-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.88 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.88 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
67
{
"name": "BAT",
"version": "0.0.1",
"description": "Shippable Build Acceptance Tests",
"main": "app.js",
"scripts": {
"start": "app.js",
"test": "./node_modules/mocha/bin/mocha -R mocha-multi tests/**/**/*",
"test-core": "./node_modules/mocha/bin/mocha -R mocha-multi tests/core/*.js",
"test-daily": "./node_modules/mocha/bin/mocha -R mocha-multi tests/daily/**/*.js",
"test-weekly": "./node_modules/mocha/bin/mocha -R mocha-multi tests/weekly/**/*.js",
"test-tokenExchange": "./node_modules/mocha/bin/mocha tests/testTokenExchange.js",
"test-getAccounts": "./node_modules/mocha/bin/mocha tests/0.js",
"test-deleteAccounts": "./node_modules/mocha/bin/mocha tests/deleteAccount.js",
"test-organizationOwner": "./node_modules/mocha/bin/mocha -S tests/organization-owner/github/**/*.js"
},
"author": "Avi Cavale <avi@shippable.com> (http://shippable.com/)",
"dependencies": {
"async": "^2.1.2",
"github": "^6.0.1",
"mocha": "^3.1.2",
"mocha-multi": "^0.9.1",
"nconf": "^0.8.4",
"should": "^5.2.0",
"underscore": "^1.8.3",
"request": "^2.78.0",
"parse-links": "*",
"querystring": "*",
"oauth": "*",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"util": "0.10.3",
"winston": "2.2.0",
"braintree": "1.40.0"
},
"jshintConfig": {
"node": true,
"undef": true,
"noarg": true,
"white": true,
"esnext": true,
"strict": true,
"newcap": true,
"nonbsp": true,
"eqeqeq": true,
"unused": true,
"maxlen": 80,
"indent": 2,
"bitwise": true,
"noempty": true,
"latedef": "nofunc",
"maxdepth": 5,
"quotmark": "single",
"trailing": true,
"camelcase": true,
"maxparams": 8,
"globalstrict": true,
"maxcomplexity": 8,
"maxstatements": 20,
"predef": [
"logger"
]
},
"devDependencies": {
"selenium-webdriver": "^3.0.1"
}
}