-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1000 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
{
"name": "xyz-cli",
"version": "0.4.2",
"description": "Command line tool dor node xyz",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec",
"test-travis": "rm -Rf node_modules && npm install && ./node_modules/.bin/mocha --reporter spec"
},
"keywords": [
"microservice",
"node",
"nodexyz"
],
"author": "Kian Peymani @Kianenigma",
"license": "ISC",
"bin": {
"xyz": "./index.js"
},
"dependencies": {
"always-tail": "^0.2.0",
"chalk": "^1.1.3",
"clear": "0.0.1",
"clui": "^0.3.1",
"commander": "^2.9.0",
"figlet": "^1.1.2",
"inquirer": "^1.1.0",
"lodash": "^4.13.1",
"marked": "latest",
"marked-terminal": "latest",
"minimist": "^1.2.0",
"preferences": "^0.2.1",
"touch": "^1.0.0",
"vorpal": "^1.11.4",
"xyz-core": "^0.4.1"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.5.3",
"xyz-core": "[email protected]:node-xyz/xyz-core.git"
}
}