-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
79 lines (79 loc) · 2.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
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
{
"name": "shx",
"version": "0.3.4",
"description": "Portable Shell Commands for Node",
"bin": {
"shx": "lib/cli.js"
},
"files": [
"lib"
],
"scripts": {
"check-node-support": "node scripts/check-node-support",
"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",
"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 <[email protected]> (http://ariporad.com/)",
"Levi Thomason <[email protected]> (https://github.com/levithomason)",
"Nate Fischer <[email protected]>"
],
"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-env": "^1.7.0",
"babel-register": "^6.7.2",
"concurrently": "^5.3.0",
"eslint": "^5.16.0",
"eslint-import-resolver-node": "0.3.7",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.26.0",
"js-yaml": "^4.1.0",
"mocha": "^6.2.3",
"nyc": "^14.1.1",
"rimraf": "^2.5.2",
"shelljs-changelog": "^0.2.6",
"shelljs-plugin-open": "^0.2.1",
"shelljs-release": "^0.5.2",
"should": "^13.2.3",
"watch": "^1.0.2"
},
"dependencies": {
"minimist": "^1.2.6",
"shelljs": "^0.8.5"
},
"engines": {
"node": ">=6"
}
}