-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.92 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
{
"name": "nodets-sample",
"version": "1.0.0",
"description": "",
"main": "dist/src/index.js",
"publishConfig": {
"registry": "http://nexus3-misanche-nexus.apps.na39.openshift.opentlc.com/repository/npm_internal/"
},
"dependencies": {
"@types/mocha": "^5.2.6",
"bluebird": "^3.5.1",
"cls-hooked": "^4.2.2",
"cors": "2.8.4",
"debug": "^4.1.1",
"express": "4.16.4",
"js-yaml": "^3.13.0",
"lodash": "^4.17.11",
"node-uuid": "^1.4.8",
"oas-tools": "^2.1.4",
"perfy": "^1.1.2",
"prom-client": "^11.3.0",
"winston": "^2.4.0"
},
"devDependencies": {
"@types/chai": "4.0.4",
"@types/chai-http": "3.0.3",
"@types/cls-hooked": "^4.3.0",
"@types/debug": "4.1.3",
"@types/express": "4.16.1",
"@types/lodash": "^4.14.123",
"@types/node": "8.0.46",
"@types/node-uuid": "0.0.28",
"@types/winston": "^2.4.4",
"chai": "4.1.2",
"chai-http": "^4.2.1",
"copyfiles": "^2.1.0",
"mocha": "^6.0.2",
"nodemon": "^1.18.10",
"shelljs": "^0.7.8",
"sinon": "^7.3.1",
"supertest": "3.0.0",
"ts-mocha": "6.0.0",
"ts-node": "3.3.0",
"tslint": "5.15.0",
"typescript": "3.4.1"
},
"scripts": {
"clean": "rm -rf dist",
"build:copy": "copyfiles -f \"src/definition/*.yaml\" dist/definition",
"start": "DEBUG=nodejs:* node dist/index.js",
"build:live": "npm run clean && npm run lint && tsc -p tsconfig.json && npm run build:copy",
"test": "DEBUG=nodejs:* TS_NODE_CACHE=false ./node_modules/.bin/mocha --require ts-node/register './test/**/*.spec.ts' --recursive --exit",
"build:dev": "nodemon --exec ts-node -- ./src/index.ts",
"dev": "DEBUG=nodejs:* TS_NODE_CACHE=false npm run build:dev",
"lint": "tslint -p tsconfig.json",
"testOne": "TS_NODE_CACHE=false ./node_modules/.bin/mocha --require ts-node/register"
},
"engines": {
"node": ">6.11.0"
},
"author": "Prima",
"license": "ISC"
}