-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.68 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.68 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
{
"name": "ars-client",
"version": "0.1.4",
"description": "JavaScript client to RESTful API of ActiveReports Server.",
"main": "lib/index.js",
"scripts": {
"start": "node devserver.js",
"lint": "eslint src",
"coverage": "babel-node -r node_modules/isparta/lib/cli cover --root src --include-all-sources --report lcov --report html node_modules/mocha/bin/_mocha -- test",
"coverage-check": "node node_modules/isparta/node_modules/istanbul/lib/cli check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
"codecov": "cat ./coverage/coverage.json | ./node_modules/codecov.io/bin/codecov.io.js",
"test": "npm run lint && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/activereports/ars-client.git"
},
"keywords": [
"activereports",
"ars",
"client"
],
"author": "Sergey Todyshev <stodyshev@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/activereports/ars-client/issues"
},
"homepage": "https://github.com/activereports/ars-client#readme",
"dependencies": {
"es6-promise": "^3.0.2",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.3.0",
"query-string": "^3.0.0",
"url-join": "0.0.1"
},
"devDependencies": {
"babel": "^6.5.1",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.1",
"babel-eslint": "^5.0.0-beta9",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"codecov.io": "^0.1.6",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.0",
"eslint-plugin-react": "^3.16.1",
"expect.js": "^0.3.1",
"isparta": "^4.0.0",
"mocha": "^2.4.5",
"webpack": "^1.12.13"
}
}