forked from wikimedia/restbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.12 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "restbase",
"version": "1.1.4",
"description": "REST storage and service dispatcher",
"main": "index.js",
"scripts": {
"postpublish": "git tag -a \"v${npm_package_version}\" -m \"${npm_package_name}@${npm_package_version} release\" && git push upstream \"v${npm_package_version}\"",
"start": "service-runner",
"test": "npm run lint && sh test/utils/run_tests.sh test",
"lint": "eslint --max-warnings 0 --ext .js --ext .json .",
"coverage": "sh test/utils/run_tests.sh coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git://github.com/wikimedia/restbase.git"
},
"keywords": [
"REST",
"API",
"routing",
"orchestration",
"storage",
"buckets",
"tables",
"queues",
"cassandra",
"kafka"
],
"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",
"readme": "README.md",
"dependencies": {
"bluebird": "^3.5.5",
"content-type": "git+https://github.com/wikimedia/content-type#master",
"entities": "^2.0.0",
"fast-json-stable-stringify": "^2.0.0",
"hyperswitch": "^0.13.0",
"jsonwebtoken": "^8.5.1",
"mediawiki-title": "^0.7.2",
"restbase-mod-table-cassandra": "^1.2.1",
"semver": "latest",
"service-runner": "^2.7.3",
"uuid": "^3.3.3"
},
"devDependencies": {
"ajv": "^6.10.2",
"bunyan": "^1.8.12",
"coveralls": "^3.0.5",
"eslint": "^5.16.0",
"eslint-config-wikimedia": "^0.13.1",
"eslint-plugin-jsdoc": "^15.8.0",
"eslint-plugin-json": "^1.4.0",
"js-yaml": "^3.13.1",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mocha.parallel": "^0.15.6",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"openapi-schema-validator": "^3.0.3",
"preq": "^0.5.11",
"restbase-mod-table-sqlite": "^1.2.1"
},
"engines": {
"node": ">=6"
},
"deploy": {
"node": "6.11.1",
"target": "debian:stretch",
"dependencies": {
"_all": []
}
}
}