-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
48 lines (48 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
{
"name": "kite-api",
"version": "3.20.0",
"description": "API methods to access Kite",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/kiteco/kite-api-js.git"
},
"bugs": "http://github.com/kiteco/kite-api-js/issues",
"commits": "http://github.com/kiteco/kite-api-js/commits",
"contributors": [
{
"name": "Cédric Néhémie",
"email": "[email protected]"
}
],
"scripts": {
"coverage": "npm run lcov_report && codecov",
"lcov_report": "nyc report --reporter=lcov",
"lint:fix": "eslint --fix .",
"lint": "eslint .",
"test-nocov": "mocha --timeout 5000 --recursive test/*.test.js test/**/*.test.js",
"test": "nyc mocha --timeout 5000 --recursive test/*.test.js test/**/*.test.js"
},
"dependencies": {
"md5": "^2.2.0",
"kite-connector": "=3.16.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"codecov": "^3.6.5",
"eslint": "^4.18.2",
"eslint-config-fbjs": "^1.1.1",
"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",
"expect.js": "^0.3.1",
"fbjs": "^0.8.6",
"jsdom": "^9.8.3",
"mocha": "^5.2.0",
"mocha-jsdom": "^1.1.0",
"nyc": "^14.1.1",
"sinon": "^2.3.5"
}
}