-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "topcoder-meta-services-rest-api",
"version": "5.0.0",
"description": "REST API for Topcoder Meta Services. This describes a service that can give information on other services existing on Topcoder. Available service links can be listed by sending GET request. Also, each service can return links to further services in their responses.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "standard --fix"
},
"keywords": [
"swagger"
],
"license": "Unlicense",
"private": true,
"dependencies": {
"config": "^1.30.0",
"connect": "^3.2.0",
"get-parameter-names": "^0.3.0",
"http-errors": "^1.6.3",
"joi": "^13.4.0",
"js-yaml": "^3.3.0",
"lodash": "^4.17.10",
"memory-cache": "^0.2.0",
"no-kafka": "^3.2.10",
"superagent": "^3.8.3",
"swagger-tools": "^0.10.4",
"tc-core-library-js": "appirio-tech/tc-core-library-js.git#v2.6.3.1",
"winston": "^3.0.0"
},
"engines": {
"node": "~8"
},
"devDependencies": {
"standard": "^11.0.1"
}
}