-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
49 lines (49 loc) · 1.35 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
{
"name": "kite-installer",
"main": "./lib/index.js",
"version": "3.16.1",
"description": "Javascript library to install and manage Kite",
"author": "Daniel Hung",
"keywords": [],
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"coverage": "npm run lcov_report && codecov",
"lcov_report": "nyc report --reporter=lcov",
"lint:fix": "eslint --fix .",
"lint": "eslint .",
"test-nocov": "mocha --timeout 20000 --recursive test/*.test.js test/**/*.test.js",
"test": "nyc mocha --timeout 20000 --recursive test/*.test.js test/**/*.test.js"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"dependencies": {
"mixpanel": "^0.5.0",
"kite-api": "=3.9.0",
"kite-connector": "=3.10.0",
"rollbar": "^2.4.4"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"codecov": "^3.6.5",
"eslint-config-fbjs": "^1.1.1",
"eslint-config": "^0.3.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-jasmine": "^2.2.0",
"eslint-plugin-prefer-object-spread": "^1.1.0",
"eslint-plugin-react": "^6.8.0",
"eslint": "^3.6.0",
"expect.js": "^0.3.1",
"fbjs": "^0.8.6",
"jsdom": "^9.8.3",
"mocha-jsdom": "^1.1.0",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"sinon": "^2.3.5"
}
}