-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.54 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.54 KB
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
{
"name": "shx",
"version": "0.4.0",
"description": "Portable Shell Commands for Node",
"bin": {
"shx": "src/cli.js"
},
"files": [
"src"
],
"scripts": {
"check-node-support": "node scripts/check-node-support",
"lint": "eslint .",
"posttest": "npm run lint",
"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"
},
"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": {
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-node": "0.3.7",
"eslint-plugin-import": "^2.31.0",
"js-yaml": "^4.1.0",
"mocha": "^11.1.0",
"nyc": "^17.1.0",
"shelljs-changelog": "^0.2.6",
"shelljs-plugin-open": "^0.4.0",
"shelljs-release": "^0.5.3",
"should": "^13.2.3"
},
"dependencies": {
"minimist": "^1.2.8",
"shelljs": "^0.10.0"
},
"engines": {
"node": ">=20"
}
}