forked from wikimedia/restbase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.56 KB
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
{
"name": "restbase",
"version": "0.5.0",
"description": "REST storage and service dispatcher",
"main": "server.js",
"scripts": {
"start": "service-runner",
"test": "sh test/utils/cleandb.sh && mocha",
"coverage": "sh test/utils/cleandb.sh && istanbul cover _mocha -- -R spec",
"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": "Apache2",
"bugs": {
"url": "https://phabricator.wikimedia.org/tag/restbase/"
},
"homepage": "https://github.com/wikimedia/restbase",
"dependencies": {
"bluebird": "~2.2.2",
"bunyan": "~1.1.3",
"busboy": "~0.2.8",
"gelf-stream": "~0.2.4",
"js-yaml": "~3.2.2",
"node-txstatsd": "~0.1.5",
"node-uuid": "git+https://github.com/gwicke/node-uuid#master",
"preq": "~0.3.6",
"request": "^2.44.0",
"restbase-mod-table-cassandra": "^0.5.3",
"service-runner": "^0.1.6",
"swagger-router": "^0.0.4",
"swagger-ui": "git+https://github.com/wikimedia/swagger-ui#master",
"url-template": "2.0.4",
"yargs": "~1.3.0"
},
"devDependencies": {
"mocha": "~1.x.x",
"mocha-jshint": "0.0.9",
"istanbul": "0.3.5",
"mocha-lcov-reporter": "0.0.1",
"coveralls": "2.11.2",
"swagger-test": "0.2.0",
"heapdump": "^0.3.3"
}
}