-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.45 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
{
"name": "shelljs.exec",
"version": "1.1.8",
"description": "Replacement for shelljs' slow exec method - benchmarked 20x faster",
"author": "Daniel Lewis BSc (Hons)",
"license": "ISC",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/istanbul cover -x \"**/*.spec.js\" ./node_modules/mocha/bin/_mocha",
"enforcer": "./node_modules/.bin/istanbul check-coverage --statement 100 --branch 100 --function 100 --line 100",
"build": "npm-run-all test enforcer",
"prepush": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danday74/shelljs.exec.git"
},
"bugs": {
"url": "https://github.com/danday74/shelljs.exec/issues"
},
"homepage": "https://github.com/danday74/shelljs.exec#readme",
"keywords": [
"shelljs exec",
"shelljs.exec",
"shelljs-exec",
"shell",
"shelljs",
"shell js",
"shell.js",
"shell-js",
"child_process",
"child_process.exec",
"child_process.execSync",
"exec sync",
"exec.sync",
"exec-sync",
"bash",
"unix"
],
"dependencies": {},
"devDependencies": {
"chai": "^4.1.2",
"chalk": "^2.1.0",
"coveralls": "2.11.16",
"eslint": "^4.8.0",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"mocha": "^4.0.0",
"npm-run-all": "^4.1.1",
"performance-now": "^2.1.0",
"shelljs": "^0.7.8",
"sinon": "^4.0.1",
"sinon-chai": "^2.14.0"
},
"engines": {
"node": ">= 4.0.0"
}
}