forked from enactjs/docs-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.15 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
{
"name": "@enact/docs-utils",
"description": "Utilities for parsing and validating JSDoc in Enact projects",
"version": "0.3.2",
"engines": {
"node": ">=10.10.0"
},
"main": "index.js",
"bin": {
"validate-docs": "index.js"
},
"scripts": {
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enactjs/docs-utils.git"
},
"keywords": [
"enact",
"docs",
"jsdoc",
"react"
],
"author": "Roy Sutton <[email protected]>",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/enactjs/docs-utils/issues"
},
"homepage": "https://github.com/enactjs/docs-utils#readme",
"dependencies": {
"chalk": "^3.0.0",
"documentation": "^12.3.0",
"elasticlunr": "^0.9.5",
"gray-matter": "^4.0.2",
"jsonata": "^1.7.0",
"jsonfile": "^5.0.0",
"markdown-toc": "^1.2.0",
"minimist": "^1.2.0",
"mkdirp": "^1.0.3",
"progress": "^1.1.8",
"readdirp": "^2.2.1",
"shelljs": "^0.8.3"
},
"devDependencies": {
"eslint": "^6.8.0"
}
}