forked from wikimedia/restbase
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
82 lines (82 loc) · 2.35 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
79
80
81
82
{
"name": "restbase",
"version": "0.17.0",
"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": "sh test/utils/run_tests.sh test",
"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 <[email protected]>",
"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.0",
"cassandra-uuid": "^0.0.2",
"restbase-mod-table-cassandra": "^0.11.2",
"restbase-mod-table-cassandra-ng": "git+https://github.com/wikimedia/restbase-mod-table-cassandra#redesign",
"service-runner": "^2.3.0",
"json-stable-stringify": "git+https://github.com/wikimedia/json-stable-stringify#master",
"content-type": "git+https://github.com/wikimedia/content-type#master",
"hyperswitch": "^0.9.1",
"jsonwebtoken": "^7.4.1",
"mediawiki-title": "^0.6.3",
"entities": "^1.1.1"
},
"devDependencies": {
"ajv": "^5.1.5",
"bunyan": "^1.8.10",
"coveralls": "^2.13.1",
"eslint-config-node-services": "^2.2.2",
"eslint-config-wikimedia": "^0.4.0",
"eslint-plugin-jsdoc": "^3.1.0",
"eslint-plugin-json": "^1.2.0",
"istanbul": "^0.4.5",
"js-yaml": "^3.8.4",
"jscs": "^3.0.7",
"mocha": "^3.4.2",
"mocha-eslint": "^3.0.1",
"mocha-jscs": "^5.0.1",
"mocha-jshint": "^2.3.1",
"mocha-lcov-reporter": "^1.3.0",
"mocha.parallel": "^0.15.2",
"nock": "^9.0.13",
"preq": "^0.5.2",
"restbase-mod-table-sqlite-ng": "^0.1.20",
"restbase-mod-table-sqlite": "^0.1.20",
"swagger-test": "0.5.1"
},
"engines": {
"node": ">=4"
},
"deploy": {
"node": "6.11.1",
"target": "debian",
"dependencies": {
"_all": []
}
}
}