-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.61 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
{
"name": "brinkbit",
"version": "0.2.5",
"description": "Node.js brinkbit sdk",
"main": "src/index.js",
"scripts": {
"preversion": "npm test",
"postversion": "git push origin master && hub pull-request -m 'Bump version' && git push --tags upstream && npm publish",
"test": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text mocha test/index.js",
"debug": "cross-env NODE_ENV=debug mocha test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Brinkbit/brinkbit-node.git"
},
"keywords": [
"brinkbit",
"sdk",
"game",
"baas"
],
"author": "Brinkbit",
"license": "MIT",
"bugs": {
"url": "https://github.com/Brinkbit/brinkbit-node/issues"
},
"homepage": "https://github.com/Brinkbit/brinkbit-node#readme",
"devDependencies": {
"chai": "^4.0.2",
"cross-env": "^5.0.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-brinkbit": "^0.1.10",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"express": "^4.15.3",
"mocha": "^3.4.2",
"nyc": "^11.0.2",
"shelljs": "^0.7.8",
"supertest-session": "github:brinkbit/supertest-session"
},
"dependencies": {
"bluebird": "^3.5.1",
"brinkbit-plugin": "^0.1.0",
"event-emitter": "^0.3.5",
"lodash.merge": "^4.6.0",
"request": "^2.81.0",
"resolve-url": "^0.2.1",
"validate.js": "^0.11.1"
}
}