-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "restbase-mod-table-spec",
"version": "1.2.0",
"description": "Tests and specification for RESTBase backend modules",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/wikimedia/restbase-mod-table-spec.git"
},
"scripts": {
"test": "npm run lint && mocha ./test/lib/",
"lint": "eslint --max-warnings 0 --ext .js --ext .json .",
"coverage": "nyc --reporter=lcov _mocha ./test/lib",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"restbase",
"REST",
"API",
"routing",
"orchestration",
"storage",
"buckets",
"tables",
"queues",
"cassandra"
],
"author": "Wikimedia Service Team <services@wikimedia.org>",
"license": "Apache-2.0",
"bugs": {
"url": "https://phabricator.wikimedia.org/tag/restbase/"
},
"homepage": "https://github.com/wikimedia/restbase-mod-table-spec",
"dependencies": {
"js-yaml": "^3.12.0",
"routeswitch": "~0.6.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"bluebird": "~3.5.2",
"coveralls": "3.0.2",
"eslint-config-wikimedia": "^0.10.0",
"eslint-plugin-jsdoc": "^3.9.1",
"eslint-plugin-json": "^1.2.1",
"extend": "^3.0.2",
"mocha": "5.2.0",
"mocha-lcov-reporter": "1.3.0",
"nyc": "^14.1.1"
}
}