-
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.64 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.64 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": "barracks-sdk",
"version": "0.0.2",
"build": 0,
"description": "Barracks SDK node module",
"main": "src/index.js",
"scripts": {
"lint": "jshint **/**.js",
"test": "npm run lint && npm run coverage && npm run check-coverage",
"coverage": "DEBUG=true istanbul cover ./node_modules/mocha/bin/_mocha tests/test.js -- -R spec",
"check-coverage": "istanbul check-coverage --statement 80 --branch 60 --function 85",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"contributors": [
{
"email": "brice@barracks.io",
"name": "Brice Argenson"
},
{
"email": "gregoire@barracks.io",
"name": "Grégoire Weber"
},
{
"email": "paul@barracks.io",
"name": "Paul Aigeperse"
},
{
"email": "pierre-olivier@barracks.io",
"name": "Pierre-Olivier Dybman"
},
{
"email": "simon@barracks.io",
"name": "Simon Guerout"
}
],
"license": "Apache-2.0",
"devDependencies": {
"chai": "1.10.0",
"chai-fs": "0.1.0",
"chai-http": "1.0.0",
"coveralls": "2.11.15",
"debug": "2.2.0",
"grunt": "0.4.5",
"grunt-contrib-jshint": "0.11.3",
"grunt-contrib-watch": "0.6.1",
"grunt-mocha-test": "0.12.7",
"istanbul": "0.4.5",
"jshint": "2.9.4",
"mocha": "2.3.4",
"nock": "8.0.0",
"proxyquire": "1.7.10",
"request-debug": "0.2.0"
},
"dependencies": {
"es6-promise": "4.0.5",
"md5-file": "3.1.1",
"request": "2.74.0"
},
"engines": {
"node": ">=0.10 <7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/barracksiot/javascript-client"
}
}