-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
{
"name": "service-template-node",
"version": "0.11.0",
"description": "A blueprint for MediaWiki REST API services",
"main": "./app.js",
"scripts": {
"start": "service-runner",
"test": "npm run lint && PREQ_CONNECT_TIMEOUT=15 nyc --reporter text-summary _mocha --recursive",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint --fix .",
"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": "PREQ_CONNECT_TIMEOUT=15 nyc _mocha --recursive"
},
"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.5",
"body-parser": "^1.19.0",
"bunyan": "^1.8.12",
"compression": "^1.7.4",
"domino": "^2.1.3",
"express": "^4.17.1",
"http-shutdown": "^1.2.1",
"js-yaml": "^3.13.1",
"preq": "^0.5.9",
"service-runner": "^5.0.0",
"swagger-router": "^0.7.4",
"swagger-ui-dist": "^4.10.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"ajv": "^8.6.2",
"chai": "^4.3.0",
"eslint-config-wikimedia": "0.28.2",
"extend": "^3.0.2",
"mocha": "^9.2.2",
"mocha-lcov-reporter": "^1.3.0",
"mocha.parallel": "^0.15.6",
"nyc": "^15.1.0",
"openapi-schema-validator": "^3.0.3"
}
}