-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 885 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 885 Bytes
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
{
"name": "runshell",
"version": "1.0.1",
"description": "Library to execute a shell command",
"main": "index.js",
"scripts": {
"test": "tap test/*.test.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/firstandthird/runshell.git"
},
"keywords": [
"shell",
"runshell"
],
"author": "First+Third <code@firstandthird.com> (http://firstandthird.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/firstandthird/runshell/issues"
},
"homepage": "https://github.com/firstandthird/runshell#readme",
"dependencies": {
"joi": "^13.0.2",
"obj2args": "^1.1.0"
},
"devDependencies": {
"eslint": "^4.14.0",
"eslint-config-firstandthird": "^4.3.0",
"eslint-plugin-import": "^2.8.0",
"tap": "^11.0.1"
},
"eslintConfig": {
"extends": "firstandthird"
}
}