-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.88 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "barracks-cli",
"version": "2.0.4",
"description": "A CLI tool for Barracks",
"scripts": {
"start": "./src/bin/barracks",
"lint": "jshint src/**/**.js && jshint tests/**/**.js",
"test": "npm run lint && npm run coverage && npm run check-coverage",
"coverage": "DEBUG=true istanbul cover ./node_modules/mocha/bin/_mocha ./tests/ --recursive -- --recursive",
"check-coverage": "istanbul check-coverage --statement 98 --branch 95 --function 95",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"bin": {
"barracks": "src/bin/barracks"
},
"contributors": [
{
"email": "[email protected]",
"name": "Brice Argenson"
},
{
"email": "[email protected]",
"name": "Grégoire Weber"
},
{
"email": "[email protected]",
"name": "Simon Guerout"
},
{
"email": "[email protected]",
"name": "Vladimir Romero"
}
],
"keywords": [
"Barracks",
"IoT",
"CLI"
],
"repository": {
"type": "git",
"url": "[email protected]:barracksiot/barracks-cli.git"
},
"engine": "node >= 6.0",
"author": "[email protected]",
"license": "Apache-2.0",
"dependencies": {
"barracks-messenger-sdk": "0.0.4",
"barracks-sdk": "2.0.2",
"barracks-sdk-legacy": "0.0.2",
"commander": "2.9.0",
"in-stream": "0.1.7",
"mkdirp": "0.5.1",
"pjson": "1.0.7",
"prettyjson": "1.1.3",
"proxyquire": "1.7.10",
"read": "1.0.7",
"request": "2.78.0",
"request-promise": "4.1.1",
"winston": "2.3.1",
"yesno": "0.0.1"
},
"devDependencies": {
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"chai-spies": "0.7.1",
"coveralls": "2.11.15",
"istanbul": "0.4.5",
"jshint": "2.9.4",
"mocha": "3.2.0",
"mock-stdin": "0.3.1",
"sinon": "1.17.6",
"sinon-chai": "2.8.0",
"yesno": "^0.0.1"
}
}