-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.38 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": "restbase-mod-table-sqlite",
"description": "RESTBase table storage using sqlite for testing purposes",
"version": "1.2.1",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/wikimedia/restbase-mod-table-sqlite.git"
},
"keywords": [
"REST",
"API",
"storage",
"buckets",
"tables",
"sqlite"
],
"author": "Wikimedia Service Team <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://phabricator.wikimedia.org/tag/restbase/"
},
"homepage": "https://github.com/wikimedia/restbase-mod-table-sqlite",
"dependencies": {
"bluebird": "^3.5.2",
"extend": "^3.0.2",
"fast-json-stable-stringify": "^2.0.0",
"generic-pool": "^3.4.2",
"js-yaml": "^3.12.0",
"lru-cache": "^4.1.3",
"restbase-mod-table-spec": "^1.2.0",
"sqlite3": "^4.0.3"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint-config-wikimedia": "^0.10.0",
"eslint-plugin-jsdoc": "^3.9.1",
"eslint-plugin-json": "^1.2.1",
"mocha-lcov-reporter": "^1.3.0",
"mocha": "^5.2.0",
"nyc": "^14.1.1"
},
"scripts": {
"test": "npm run lint && rm test_db > /dev/null; mocha",
"lint": "eslint --max-warnings 0 --ext .js --ext .json .",
"coverage": "[ -f test_db ] && rm test_db; nyc --reporter=lcov _mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls"
}
}