This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
97 lines (97 loc) · 2.93 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "transparent-supply-examples",
"version": "1.0.0",
"description": "IBM Blockchain Transparent Supply Examples",
"author": "IBM",
"license": "Apache-2.0",
"engines": {
"node": "8.9.*"
},
"main": "bin/app.js",
"scripts": {
"clean": "rimraf bin",
"pretest": "rimraf coverage",
"test": "nyc --report-dir coverage/unit npm run test-unit",
"test-unit": " mocha --opts ./src/test/unit/mocha-unit.opts --reporter ${MOCHA_REPORTER:-spec}",
"lint": "tslint 'src/**/*.ts'",
"lint-fix": "tslint --fix 'src/**/*.ts'",
"prebuild": "npm run clean",
"build": "tsc",
"precheck": "npm run build",
"check": "npm run lint",
"postcheck": "npm run test-unit",
"watch": "nodemon --config .nodemon.json",
"watch:debug": "nodemon --config .nodemon.debug.json",
"coverage-badge-unit": "./node_modules/simple-coverage-badger/index.js -i coverage/unit/cobertura-coverage.xml -o unit-coverage-badge -d coverage/unit -t 'Unit Test Coverage' || true",
"release": "bash release.sh",
"auto-build": "tsc --watch &",
"start": "node --max-http-header-size=32768 bin/app.js",
"start-in-k8s": "node --inspect=0.0.0.0:32006 --max-http-header-size=32768 bin/app.js",
"start-old-node": "node bin/app.js",
"debug": "tsc && node --inspect=12345 bin/app.js",
"deploy": "NAME_SPACE=dev CHART_NAME=recall-assistant",
"auto-deploy": "npm run auto-build && DEV_MODE=true MINIKUBE_DATA_CTX=dev NAME_SPACE=dev CHART_NAME=recall-assistant",
"cli": "node bin/assistant-cli.js"
},
"dependencies": {
"express": "^4.16.2",
"lodash": "^4.17.20",
"request": "^2.83.0",
"request-promise-native": "^1.0.9",
"swagger-ui-express": "^4.0.1"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/chai-as-promised": "0.0.30",
"@types/express": "^4.17.7",
"@types/mocha": "^2.2.44",
"@types/node": "^8.10.62",
"@types/request-promise-native": "^1.0.10",
"@types/rewire": "^2.5.28",
"@types/sinon": "^2.3.7",
"@types/sinon-express-mock": "^1.3.2",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-subset": "^1.6.0",
"conventional-github-releaser": "^3.1.5",
"mocha": "^8.1.1",
"nodemon": "^2.0.4",
"nyc": "^14.1.1",
"rewire": "^2.5.2",
"rimraf": "^2.6.2",
"simple-coverage-badger": "^0.2.6",
"sinon": "^2.4.1",
"sinon-express-mock": "^1.3.1",
"source-map-loader": "^0.2.3",
"source-map-support": "^0.4.18",
"supertest": "^3.0.0",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-config-airbnb": "5.10.0",
"typemoq": "^1.8.0",
"typescript": "^2.6.1"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src"
],
"exclude": [
"src/test"
],
"reporter": [
"html",
"text-summary",
"cobertura"
],
"require": [
"ts-node/register"
],
"all": true,
"sourceMap": true,
"instrument": true
}
}