-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.61 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
{
"name": "argumental",
"version": "1.1.1",
"description": "Framework for building CLI apps with Node.js",
"main": "dist/index.js",
"scripts": {
"start": "node ./node_modules/typescript/bin/tsc --build",
"test": "npm start && node ./node_modules/typescript/bin/tsc -p test/tsconfig.json && node ./node_modules/mocha/bin/mocha --require source-map-support/register ./test/dist/main.spec.js",
"docs": "node ./node_modules/typedoc/bin/typedoc src --out docs/dev --name \"Argumental Developer Documentation\" --tsconfig ./tsconfig.json --excludeExternals --readme none",
"prepublishOnly": "npm start"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/chisel/argumental.git"
},
"keywords": [
"cli",
"node",
"node.js",
"node-js",
"argument",
"argument-parser",
"cli-app",
"terminal",
"console",
"fast-dev",
"fast-develop",
"validation",
"validators",
"middleware",
"typescript",
"javascript"
],
"author": "Ramtin Soltani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chisel/argumental/issues"
},
"homepage": "https://github.com/chisel/argumental#readme",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/lodash": "^4.14.149",
"@types/minimist": "^1.2.0",
"@types/mocha": "^5.2.7",
"@types/node": "^13.9.2",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"source-map-support": "^0.5.16",
"typedoc": "^0.20.10",
"typescript": "^4.1.3"
},
"dependencies": {
"chalk": "^3.0.0",
"lodash": "^4.17.19",
"minimist": "^1.2.5"
}
}