-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "modern-jsdoc-template",
"version": "1.0.0",
"description": "Modern JSDoc default template with a Dark/Light theme style that closely resembles the Dark/Light theme found on GitHub",
"keywords": [
"jsdoc",
"template",
"dark",
"style",
"theme",
"default"
],
"homepage": "https://dmh.github.io/modern-jsdoc-template/",
"bugs": {
"url": "https://github.com/dmh/modern-jsdoc-template/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dmh/modern-jsdoc-template.git"
},
"files": [
"default/",
"src/"
],
"scripts": {
"prepare": "husky install",
"lint-css": "stylelint 'src/**/*.css'",
"lint-js": "standard -v 'build/**/*.js'",
"check-js": "tsc -p jsconfig.json --maxNodeModuleJsDepth 0",
"test": "npm run lint-css && npm run lint-js && npm run check-js",
"build": "node ./build/build.exec.mjs",
"docs": "node ./build/docs.exec.mjs",
"watch": "node ./build/watch.exec.mjs",
"start": "npm run watch & http-server -p 8082 docs/"
},
"dependencies": {
"jsdoc": "~4.0.2"
},
"devDependencies": {
"@resultify/initial.css": "~0.0.4",
"@types/node": "~20.2.6",
"@types/postcss-import": "~14.0.0",
"@types/semver": "~7.5.0",
"chalk": "~5.2.0",
"chokidar": "~3.5.3",
"cpy": "~10.1.0",
"cssnano": "~6.0.1",
"del": "~7.0.0",
"execa": "~7.1.1",
"http-server": "^14.1.1",
"husky": "~8.0.1",
"postcss-import": "~15.1.0",
"semver": "~7.5.0",
"standard": "~17.1.0",
"stylelint": "~15.7.0",
"stylelint-config-recommended": "~12.0.0",
"stylelint-no-unsupported-browser-features": "~6.1.0",
"typescript": "~5.1.3"
},
"engines": {
"node": ">=16.14",
"npm": ">=8.19"
},
"publishConfig": {
"access": "public"
},
"standard": {
"ignore": [
"default/",
"demo/",
"docs/"
]
},
"stylelint": {
"extends": [
"stylelint-config-recommended"
],
"plugins": [
"stylelint-no-unsupported-browser-features"
],
"rules": {},
"ignoreFiles": [
"default/",
"demo/",
"docs/"
]
}
}