-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.82 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
{
"name": "@13ms/submodule",
"version": "1.2.1",
"description": "A jsdoc plugin for automatically creating nested submodules according to file path",
"type": "module",
"main": "dist/bundle.min.cjs",
"scripts": {
"build": "npm run test && rollup --config ./config/rollup.config.js && npm run tokei",
"build-dev": "rollup --config ./config/rollup.config.js",
"docs": "jsdoc -c ./config/jsdoc.config.json",
"docs-sample": "jsdoc -c ./config/jsdoc-sample.config.json",
"serve-docs": "npm run docs && http-server ./jsdoc -o index.html",
"serve-docs-sample": "npm run docs-sample && http-server ./jsdoc-sample -o index.html",
"test": "jest",
"tokei": "node scripts/tokei.js",
"watch-docs": "npm run serve-docs & nodemon --watch ./src --ext js,css --exec 'npm run docs'",
"watch-docs-sample": "npm run serve-docs-sample & nodemon --watch ./src --ext js,css --exec 'npm run build-dev && npm run docs-sample'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blameitonyourisp/submodule.git"
},
"keywords": [
"jsdoc",
"plugin",
"nested",
"submodule"
],
"author": "James Reid",
"license": "MIT",
"bugs": {
"url": "https://github.com/blameitonyourisp/submodule/issues"
},
"homepage": "https://github.com/blameitonyourisp/submodule#readme",
"dependencies": {
"jsdoc": "^4.0.2"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@jest/globals": "^29.5.0",
"@rollup/plugin-terser": "^0.4.0",
"docdash": "^2.0.1",
"http-server": "^14.1.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"rollup": "^3.20.2",
"rollup-plugin-postcss": "^4.0.2"
}
}