-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
{
"name": "@helpdotcom/help-gen",
"version": "11.0.2",
"description": "Generate validators for help.com services",
"main": "index.js",
"scripts": {
"lint": "lintit",
"pretest": "lintit",
"test": "nyc npm run test:all",
"test:all": "npm run test:standard && npm run test:strip-props && npm run test:fail-props",
"test:standard": "tap -j4 test --no-cov",
"test:strip-props": "env HELPGEN_STRIP_EXTRA_PROPS=1 npm run test:standard",
"test:fail-props": "env HELPGEN_FAIL_EXTRA_PROPS=1 npm run test:standard",
"posttest": "nyc report -r text-summary"
},
"dependencies": {
"@helpdotcom/build-ast": "^2.3.1",
"acorn": "~2.7.0",
"escodegen": "~1.8.0",
"github-slugger": "~1.0.1",
"help": "~2.1.3",
"kittie": "^4.1.1",
"mkdirp": "~0.5.1",
"node-uuid": "~1.4.7",
"object-path": "~0.9.2"
},
"devDependencies": {
"@helpdotcom/is": "^2.1.0",
"check-pkg": "^2.0.2",
"lintit": "^4.0.0",
"nyc": "^14.1.1",
"rimraf": "^2.6.2",
"tap": "^14.6.1"
},
"nyc": {
"cache": true
},
"license": "MIT",
"author": "Evan Lucas <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/helpdotcom/help-gen"
},
"homepage": "https://github.com/helpdotcom/help-gen",
"bugs": {
"url": "https://github.com/helpdotcom/help-gen/issues"
}
}