-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
{
"name": "n_shell",
"version": "0.6.2",
"description": "A node REPL with ShellJS loaded by default",
"main": "index.js",
"bin": {
"n_shell": "index.js"
},
"scripts": {
"posttest": "npm run lint",
"test": "nyc --reporter=text --reporter=lcov mocha test/*.js",
"lint": "eslint .",
"changelog": "shelljs-changelog",
"release:major": "shelljs-release major",
"release:minor": "shelljs-release minor",
"release:patch": "shelljs-release patch"
},
"keywords": [
"shelljs",
"repl",
"cli",
"console"
],
"author": "Nate Fischer <ntfschr@gmail.com> (https://github.com/nfischer)",
"repository": {
"type": "git",
"url": "git://github.com/nfischer/n_shell"
},
"license": "MIT",
"dependencies": {
"minimist": "^1.2.0",
"os-homedir": "^1.0.2",
"repl.history": "^0.1.3",
"require-relative": "^0.8.7",
"shelljs": "^0.8.5",
"shelljs-plugin-clear": "^0.2.1",
"shelljs-plugin-inspect": "^0.3.0",
"shelljs-plugin-open": "^0.2.1",
"shelljs-plugin-sleep": "^0.2.2"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^9.2.1",
"nyc": "^15.1.0",
"shelljs-changelog": "^0.2.6",
"shelljs-release": "^0.5.2"
},
"engines": {
"node": ">=10"
}
}