-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
46 lines (46 loc) · 1.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "hugo-theme-iris",
"version": "0.43.2",
"private": true,
"description": "Hugo IRIS Theme - Portfolio and Blog",
"homepage": "https://github.com/peaceiris/hugo-theme-iris#readme",
"bugs": {
"url": "https://github.com/peaceiris/hugo-theme-iris/issues"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/peaceiris/hugo-theme-iris.git"
},
"license": "MIT",
"author": "peaceiris",
"scripts": {
"postinstall": "npx husky install",
"start": "run-p client server",
"server": "make dev",
"client": "wait-on http://localhost:1313 && open http://localhost:1313",
"dev": "make dev",
"build": "make build-prod",
"test": "make test",
"test:renovate": "renovate-config-validator"
},
"lint-staged": {
"**/*": [
"npm test"
],
"{README,CONTRIBUTING}.md": [
"npx [email protected] --github"
]
},
"devDependencies": {
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"npm-run-all2": "^6.0.0",
"open": "^10.0.0",
"renovate": "^37.0.0",
"wait-on": "^7.0.1"
},
"engines": {
"node": ">=v16.19.0",
"npm": ">=9.3.1"
}
}