forked from shelljs/shx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.04 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
{
"name": "shx",
"version": "0.2.2",
"description": "Portable Shell Commands for Node",
"bin": {
"shx": "lib/cli.js"
},
"files": [
"lib"
],
"scripts": {
"prebuild": "rimraf lib",
"build": "babel src -d lib",
"build:watch": "npm run build -- -w",
"dev": "concurrently -rk 'npm run build:watch' 'npm run lint:watch'",
"lint": "eslint .",
"lint:fix": "npm run lint --silent -- --fix",
"lint:watch": "watch 'npm run lint --silent' src test",
"prepublish": "npm run build",
"posttest": "npm run lint --silent",
"release:major": "shelljs-release major",
"release:minor": "shelljs-release minor",
"release:patch": "shelljs-release patch",
"changelog": "shelljs-changelog",
"codecov": "codecov",
"test": "nyc --reporter=text --reporter=lcov mocha",
"test:watch": "concurrently -rk 'npm run test --silent -- -w' 'npm run lint:watch'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shelljs/shx.git"
},
"keywords": [
"shelljs",
"shell",
"unix",
"bash",
"sh",
"exec",
"cli",
"zsh"
],
"contributors": [
"Ari Porad <ari@ariporad.com> (http://ariporad.com/)",
"Levi Thomason <me@levithomason.com> (https://github.com/levithomason)",
"Nate Fischer <ntfschr@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/shelljs/shx/issues"
},
"homepage": "https://github.com/shelljs/shx#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"codecov": "^1.0.1",
"concurrently": "^2.1.0",
"eslint": "^2.10.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.0",
"mocha": "^2.4.5",
"nyc": "^6.4.0",
"rimraf": "^2.5.2",
"shelljs-changelog": "^0.2.0",
"shelljs-plugin-open": "^0.1.1",
"shelljs-release": "^0.2.0",
"should": "^11.1.1",
"watch": "^0.18.0"
},
"dependencies": {
"es6-object-assign": "^1.0.3",
"minimist": "^1.2.0",
"shelljs": "^0.7.3"
}
}