-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
135 lines (135 loc) · 3.21 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "cli-inspector",
"version": "1.0.6",
"description": "Automate CLI testing with style",
"keywords": [
"TypeScript",
"cli",
"testing",
"inquirer",
"commander",
"command-line",
"test",
"automation",
"automated"
],
"author": "Shishir Ramam",
"repository": "sramam/cli-inspector",
"license": "Apache-2.0",
"private": false,
"engines": {
"node": ">=6.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"staged-mods-ok": "git-mods --staged_ok",
"no-mods": "git-mods",
"clean": "rimraf build coverage",
"clean:dist": "rimraf dist",
"lint": "tslint -c tslint.json src/**/*.ts",
"compile:build": "tsc",
"compile:dist": "tsc --project tsconfig.dist.json",
"compile:watch": "tsc -w",
"sh": "npm-sh",
"secure": "nsp check",
"check": "ncu -e 1",
"test-with-cover": "istanbul cover ./node_modules/.bin/_mocha",
"test-without-cover": "mocha",
"remap-coverage:dist": "node ./scripts/remapped-coverage.js --force_min_cover true --output ./coverage/typescript",
"remap-coverage": "node ./scripts/remapped-coverage.js --force_min_cover=false --output ./coverage/typescript",
"coverage": "istanbul check-coverage ./coverage/typescript/coverage.json",
"build": "npm-run-batch",
"build:dist": "run-batch",
"build:watch": "cross-env NODE_ENV=production run-batch",
"test": "run-batch",
"test:dist": "run-batch",
"pkg-ok": "pkg-ok",
"precommit": "run-batch",
"prepush": "run-batch"
},
"run-batch": {
"build": [
"clean",
"pkg-ok",
"lint",
"compile:build",
"test"
],
"build:watch": [
"compile:watch"
],
"build:dist": [
"pkg-ok",
"lint",
"clean",
"compile:build",
"test:dist",
"clean:dist",
"compile:dist"
],
"test:dist": [
"test-with-cover",
"remap-coverage:dist"
],
"test": [
"test-with-cover",
"remap-coverage"
],
"precommit": [
"build",
"staged-mods-ok"
],
"prepush": [
"build:dist",
"secure",
"no-mods"
]
},
"devDependencies": {
"@types/byline": "^4.2.31",
"@types/chai": "^4.0.10",
"@types/inquirer": "0.0.36",
"@types/mocha": "^2.2.45",
"@types/node": "^8.5.2",
"@types/semver": "^5.4.0",
"blanket": "^1.2.3",
"chai": "^4.1.2",
"chalk": "^2.3.0",
"commander": "^2.12.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"git-mods": "^1.0.7",
"graceful-fs": "^4.1.11",
"husky": "^0.14.3",
"inquirer": "^4.0.1",
"istanbul": "^0.4.4",
"mocha": "^4.1.0",
"node-emoji": "^1.8.1",
"npm-check-updates": "^2.14.0",
"npm-run-batch": "0.0.6",
"npm-sh": "^1.0.1",
"nsp": "^3.1.0",
"nsp-formatter-checkstyle": "^1.0.2",
"nsp-formatter-remarkup": "^1.0.3",
"pkg-ok": "^1.1.0",
"remap-istanbul": "^0.9.5",
"rimraf": "^2.6.2",
"shelljs-nodecli": "^0.1.1",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"dependencies": {
"lodash.merge": "^4.6.0",
"runtime-engine-check": "^1.0.0",
"semver": "^5.4.1"
},
"standard": {
"env": [
"mocha"
]
}
}