-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.37 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.37 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
66
{
"name": "unit-cli",
"version": "1.0.3",
"description": "Unitcluster cli tool",
"main": "index.js",
"dependencies": {
"colors": "^1.1.2",
"command-line-commands": "^2.0.1",
"commander": "^2.11.0",
"filehound": "^1.16.2",
"json-beautify": "^1.0.1",
"keypress": "^0.2.1",
"loglevel": "^1.5.0",
"mkdirp": "^0.5.1",
"moment": "^2.18.1",
"mongodb": "^2.2.31",
"node-watch": "^0.5.5",
"ora": "^1.3.0",
"request": "^2.81.0",
"request-promise-native": "^1.0.4",
"telegraf": "^3.12.1",
"tree-tree": "^2.0.0",
"underscore": "^1.8.3",
"vorpal": "^1.12.0"
},
"devDependencies": {
"jest": "^21.2.0",
"standard": "^10.0.3"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zmeu213/Unit-cli.git"
},
"keywords": [
"cli"
],
"standard": {
"ignore": [
"__tests__/*.test.js",
"units/",
"node_modules/",
".vscode/"
],
"globals": [
"expect",
"test",
"beforeAll",
"afterAll",
"describe"
]
},
"author": "Kirill",
"license": "ISC",
"bin": "./index.js",
"bugs": {
"url": "https://github.com/Zmeu213/Unit-cli/issues"
},
"homepage": "https://github.com/Zmeu213/Unit-cli#readme",
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}