-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "@wizardsoftheweb/js-cli",
"version": "0.0.0",
"description": "A utility package to build CLI apps",
"main": "index.js",
"scripts": {
"test": "nyc mocha"
},
"author": "CJ Harries <[email protected]> (https://wizardsoftheweb.pro/)",
"license": "ISC",
"directories": {
"lib": "lib",
"test": "test"
},
"devDependencies": {
"@types/argparse": "^1.0.33",
"@types/chai": "^4.1.3",
"@types/mocha": "^2.2.45",
"@types/node": "^9.6.7",
"@types/proxyquire": "^1.3.28",
"@types/shelljs": "^0.7.7",
"@types/sinon": "^4.3.1",
"@types/sinon-chai": "^2.7.29",
"@types/winston": "^2.3.9",
"@wizardsoftheweb/nyc-config-typescript": "^1.1.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"mocha": "^5.1.1",
"nyc": "^11.7.1",
"proxyquire": "^2.0.1",
"sinon": "^4.5.0",
"sinon-chai": "^2.14.0",
"ts-node": "^5.0.1",
"tslint": "^5.8.0",
"typescript": "^2.8.3"
},
"dependencies": {
"argparse": "^1.0.10",
"shelljs": "^0.8.1",
"winston": "^2.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wizardsoftheweb/node-js-cli.git"
},
"bugs": {
"url": "https://github.com/wizardsoftheweb/node-js-cli/issues"
},
"homepage": "https://github.com/wizardsoftheweb/node-js-cli#readme"
}