-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.97 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "optionist",
"version": "0.0.0-development",
"description": "A powerful options object parser utility, a.k.a. Options Specialist.",
"author": "Richard King <richrdkng@gmail.com> (www.richrdkng.com)",
"license": "ISC",
"homepage": "https://github.com/nodewell/optionist#readme",
"repository": {
"type": "git",
"url": "https://github.com/nodewell/optionist.git"
},
"bugs": {
"url": "https://github.com/nodewell/optionist/issues"
},
"main": "index.js",
"keywords": [
"option",
"options",
"optionist",
"opt",
"opts",
"parser",
"parsing",
"option object",
"options object",
"option-object",
"options-object",
"option-parser",
"options-parser",
"option-parsing",
"options-parsing",
"option specialist",
"options specialist",
"option-specialist",
"options-specialist",
"object",
"specialist",
"merge",
"utility",
"util",
"tool"
],
"engines": {
"node": ">=7.0.0"
},
"scripts": {
"style:check": "standard --verbose | snazzy",
"style:fix": "standard --fix",
"gulp": "gulp --gulpfile tasks/index.js",
"test": "npm run style:check && nyc mocha \"test/**/*.test.js\"",
"docs": "npm run gulp -- docs",
"commit": "npx git-cz"
},
"standard": {
"env": [
"mocha"
]
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/github": "^5.2.10",
"@semantic-release/npm": "^5.1.4",
"@semantic-release/release-notes-generator": "^7.1.4",
"commitizen": "^3.1.1",
"coveralls": "^3.0.3",
"cz-conventional-changelog": "^2.1.0",
"del": "^4.1.0",
"fast-glob": "^2.2.6",
"fs-extra": "^7.0.1",
"gulp": "^4.0.0",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^6.1.4",
"nyc": "^14.0.0",
"semantic-release": "^15.13.3",
"snazzy": "^8.0.0",
"standard": "^12.0.1"
}
}