-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
66 lines (66 loc) · 1.83 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
{
"name": "service-template-node",
"version": "0.5.2",
"description": "A blueprint for MediaWiki REST API services",
"main": "./app.js",
"scripts": {
"start": "service-runner",
"test": "PREQ_CONNECT_TIMEOUT=15 mocha && nsp check",
"docker-start": "service-runner docker-start",
"docker-test": "service-runner docker-test",
"test-build": "service-runner docker-test && service-runner build --deploy-repo --force",
"coverage": "istanbul cover _mocha -- -R spec"
},
"repository": {
"type": "git",
"url": "git://github.com/wikimedia/service-template-node.git"
},
"keywords": [
"REST",
"API",
"service template",
"MediaWiki"
],
"author": "Wikimedia Service Team <[email protected]>",
"contributors": [],
"license": "Apache-2.0",
"bugs": {
"url": "https://phabricator.wikimedia.org/tag/service-template-node/"
},
"homepage": "https://github.com/wikimedia/service-template-node",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"bunyan": "^1.8.9",
"cassandra-uuid": "^0.0.2",
"compression": "^1.6.2",
"domino": "^1.0.28",
"express": "^4.15.2",
"js-yaml": "^3.8.2",
"preq": "^0.5.2",
"service-runner": "^2.2.5",
"swagger-router": "^0.5.6",
"swagger-ui": "git+https://github.com/wikimedia/swagger-ui#master"
},
"devDependencies": {
"extend": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-jshint": "^2.3.1",
"mocha-lcov-reporter": "^1.3.0",
"nsp": "^2.6.3",
"mocha-eslint":"^3.0.1",
"eslint": "^3.12.0",
"eslint-config-node-services": "^2.0.2",
"eslint-config-wikimedia": "^0.4.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-jsdoc": "^3.0.0"
},
"deploy": {
"target": "debian",
"node": "6.9.1",
"dependencies": {
"_all": []
}
}
}