-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "shelljs-exec-proxy",
"version": "0.2.1",
"description": "Unlimited shelljs commands with ES6 proxies",
"main": "index.js",
"scripts": {
"posttest": "npm run lint",
"test": "nyc --reporter=text --reporter=lcov mocha",
"lint": "eslint .",
"changelog": "shelljs-changelog",
"release:major": "shelljs-release major",
"release:minor": "shelljs-release minor",
"release:patch": "shelljs-release patch"
},
"keywords": [
"shelljs",
"exec",
"proxy",
"es6",
"git"
],
"author": "Nate Fischer <[email protected]> (https://github.com/nfischer)",
"license": "MIT",
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git://github.com/nfischer/shelljs-exec-proxy.git"
},
"dependencies": {
"shelljs": "^0.8.5"
},
"files": [
"index.js",
"common.js"
],
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.26.0",
"mocha": "^6.2.3",
"nyc": "^14.1.1",
"shelljs-changelog": "^0.2.6",
"shelljs-release": "^0.5.2",
"should": "^13.2.3"
}
}