-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
55 lines (55 loc) · 1.25 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
{
"name": "hdg",
"version": "1.0.0",
"description": "An API documentation generator CLI",
"main": "index.js",
"bin": {
"hdg": "index.js"
},
"files": [
"src"
],
"scripts": {
"lint": "prettier-standard index.js test/{*,/**/*}.js src/{*,/**/*}.js",
"lint:check": "prettier-standard index.js test/{*,/**/*}.js src/{*,/**/*}.js --check",
"pretest": "npm run lint:check",
"prepare": "husky install",
"test": "ava"
},
"ava": {
"files": [
"test/**/*.test.js"
],
"timeout": "5m"
},
"lint-staged": {
"*.js": "prettier-standard"
},
"keywords": [
"cli",
"node.js",
"javascript"
],
"author": "James George <[email protected]>",
"bugs": {
"url": "https://github.com/hoppscotch/hopp-doc-gen/issues"
},
"homepage": "https://github.com/hoppscotch/hopp-doc-gen#readme",
"license": "MIT",
"dependencies": {
"commander": "^7.1.0",
"enquirer": "^2.3.6",
"execa": "^5.0.0",
"kleur": "^4.1.4",
"node-banner": "^1.4.0",
"ora": "^4.1.1"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.1.4",
"ava": "^3.15.0",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"prettier-standard": "^16.4.1"
}
}