-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.38 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
{
"name": "shelljs-shjs",
"version": "0.1.0",
"description": "Binary to invoke ShellJS scripts",
"scripts": {
"posttest": "npm run lint",
"test": "ava test/*.js",
"test-with-coverage": "nyc --reporter=text --reporter=lcov ava test/*.js",
"lint": "eslint .",
"codecov": "codecov",
"release:major": "shelljs-release major",
"release:minor": "shelljs-release minor",
"release:patch": "shelljs-release patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shelljs/shjs.git"
},
"keywords": [
"shjs",
"shelljs",
"binary"
],
"author": "Nate Fischer <[email protected]> (https://github.com/nfischer)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/shelljs/shjs/issues"
},
"files": [
"bin"
],
"homepage": "https://github.com/shelljs/shjs#readme",
"bin": {
"shjs": "./bin/shjs"
},
"ava": {
"serial": true,
"powerAssert": false
},
"dependencies": {
"interpret": "^1.2.0",
"rechoir": "^0.7.0"
},
"devDependencies": {
"ava": "^0.21.0",
"codecov": "^3.0.2",
"coffee-script": "^1.10.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^3.0.0",
"eslint-plugin-import": "^1.11.1",
"nyc": "^11.3.0",
"shelljs": "^0.8.5",
"shelljs-changelog": "^0.2.0",
"shelljs-release": "^0.3.0"
},
"engines": {
"node": ">=6"
}
}