-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 933 Bytes
/
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
{
"name": "opta",
"version": "1.1.0",
"description": "Collect user input from cli flags, interactive prompts, and js input.",
"main": "index.js",
"type": "commonjs",
"keywords": [
"cli",
"yargs",
"prompt",
"options",
"choices"
],
"scripts": {
"test": "mocha",
"test:debug": "mocha --inspect --inspect-brk --timeout=0",
"lint": "standard",
"lint:fix": "standard --fix",
"postpublish": "git push origin && git push origin --tags",
"release": "npm t && standard-version && npm publish"
},
"author": "Wes Todd <wes@wesleytodd.com>",
"license": "ISC",
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git@github.com:wesleytodd/opta.git"
},
"dependencies": {
"inquirer": "^8.2.6",
"yargs": "^17.3.1"
},
"devDependencies": {
"mocha": "^10.2.0",
"standard": "^17.1.0",
"standard-version": "^9.3.2"
}
}