-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 968 Bytes
/
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
{
"name": "nomad-cli",
"version": "1.1.2",
"description": "A database migration tool",
"main": "index.js",
"bin": {
"nomad": "./bin/nomad"
},
"scripts": {
"test": "mocha ./test/*.spec.js",
"lint": "eslint --fix ."
},
"author": "Robert Hurst <[email protected]>",
"license": "MIT",
"devDependencies": {
"mocha": "^5.1.1",
"pre-commit": "^1.2.2",
"sinon": "^4.5.0"
},
"dependencies": {
"async": "^1.4.2",
"blessed": "^0.1.81",
"cardinal": "^1.0.0",
"chalk": "^1.1.3",
"cli-table": "^0.3.1",
"eslint": "^4.6.1",
"eslint-config-x2": "^3.0.1",
"glob": "^7.1.1",
"inquirer": "^2.0.0",
"mkdirp": "^0.5.1",
"rc": "^1.1.0",
"relative-date": "^1.1.2",
"strip-ansi": "^3.0.1",
"vm2": "^3.1.0",
"yargs": "^3.19.0"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:7999/x2/node_nomad.git"
},
"pre-commit": [
"lint",
"test"
]
}