forked from appcelerator/cli-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.83 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
{
"name": "cli-kit",
"version": "2.0.1",
"description": "Everything you need to create awesome command line interfaces",
"type": "module",
"exports": "./src/index.js",
"author": "Axway, Inc. <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"cli",
"cmd",
"commandline",
"command line",
"command line interface",
"command-line",
"usage",
"argv",
"parse",
"parser",
"argument",
"option",
"options",
"flag",
"flags",
"command",
"commands",
"subcommands",
"help",
"autocomplete",
"terminal",
"bash",
"shell",
"interactive"
],
"scripts": {
"coverage": "c8 npm run test",
"lint": "eslint --ignore-pattern test/examples --ignore-pattern test/fixtures src test",
"prepublishOnly": "npm run lint",
"test": "npm run lint && mocha test/**/test-*.js --require test/setup.cjs --reporter spec"
},
"dependencies": {
"argv-split": "^2.0.1",
"fastest-levenshtein": "^1.0.12",
"fs-extra": "^10.1.0",
"hook-emitter": "^6.0.0",
"lodash.camelcase": "^4.3.0",
"pkg-dir": "^6.0.1",
"pluralize": "^8.0.0",
"semver": "^7.3.7",
"snooplogg": "^5.0.0",
"which": "^2.0.2"
},
"devDependencies": {
"c8": "^7.11.3",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.19.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-mocha": "^10.0.5",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-security": "^1.5.0",
"memory-streams": "^0.1.3",
"mocha": "^10.0.0",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"tmp": "^0.2.1"
},
"homepage": "https://github.com/appcelerator/cli-kit",
"bugs": "https://github.com/appcelerator/cli-kit/issues",
"repository": "https://github.com/appcelerator/cli-kit",
"engines": {
"node": ">=14.15.0"
}
}