forked from SKKU-ESLAB/ANT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 765 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 765 Bytes
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
{
"name": "ant",
"version": "3.0.0",
"engines": {
"node": ">= 10.0.0 < 11.0.0"
},
"devDependencies": {
"docdash": "^1.2.0",
"eslint": "^7.14.0",
"eslint-config-google": "^0.14.0",
"gitbook-cli": "^2.3.2",
"gitbook-plugin-insert-logo": "^0.1.5",
"gitbook-plugin-page-toc": "^1.1.1",
"graceful-fs": "^4.2.4",
"jsdoc": "^3.6.6",
"jsdoc-to-markdown": "^6.0.1",
"tui-jsdoc-template": "^1.2.2"
},
"scripts": {
"docs:api": "bash .jsdoc/make-api-jsdoc.sh",
"docs:prepare": "node_modules/.bin/gitbook install",
"docs:build": "npm run docs:prepare && npm run docs:api && gitbook build",
"docs:serve": "npm run docs:prepare && npm run docs:api && gitbook serve",
"docs:clean": "rimraf _book"
}
}