-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "restbase-mod-table-cassandra",
"description": "RESTBase table storage on Cassandra",
"version": "1.2.1",
"license": "Apache-2.0",
"dependencies": {
"bluebird": "^3.5.2",
"cassandra-driver": "3.5.0",
"extend": "^3.0.2",
"fast-json-stable-stringify": "^2.0.0",
"js-yaml": "^3.12.0",
"restbase-mod-table-spec": "^1.2.0",
"string-align": "^0.2.0",
"yargs": "^12.0.2"
},
"repository": {
"type": "git",
"url": "git://github.com/wikimedia/restbase-mod-table-cassandra.git"
},
"scripts": {
"test": "npm run lint && mocha",
"lint": "eslint --max-warnings 0 --ext .js --ext .json .",
"coverage": "nyc --reporter=lcov _mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"coveralls": "^3.0.2",
"nyc": "^14.1.1",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"preq": "^0.5.6",
"eslint-config-wikimedia": "^0.10.0",
"eslint-plugin-jsdoc": "^3.9.1",
"eslint-plugin-json": "^1.2.1"
}
}