-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
90 lines (90 loc) · 2.85 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
{
"name": "node-adapter",
"version": "1.0.12",
"description": "A lightweight and extensible HTTP adapter, editable HTTP server, Webhook transformation, request relay platform. based on koa",
"main": "src/main.ts",
"scripts": {
"start": "node dist/main.js",
"test": "cross-env JEST_JUNIT_OUTPUT=test-result/result.xml jest --verbose --detectOpenHandles",
"test_prod": "cross-env JEST_JUNIT_OUTPUT=test-result/result.xml jest --verbose --bail --ci --runInBand --reporters=default --reporters=jest-junit --detectOpenHandles --coverage",
"dev": "cross-env CONF_PATH=./conf-dev DEBUG=server:* nodemon -r ts-node/register src/main.ts",
"dev_start": "cross-env DEBUG=server:* node -r ts-node/register src/main.ts",
"dist_start": "npm run build && node dist/main.js",
"lint": "tslint -p tsconfig.json",
"build": "tslint -p tsconfig.json && tsc -p tsconfig.json",
"build_prod": "tslint -p tsconfig.json && webpack --config webpack.config.js --progress --color",
"doc": "compodoc -p tsconfig.json -d docs"
},
"engines": {
"node": ">= 8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Code2Life/http-adapter.git"
},
"keywords": [
"http-server",
"adapter",
"webhook",
"relay",
"transform"
],
"author": "Code2Life",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Code2Life/http-adapter/issues"
},
"homepage": "https://github.com/Code2Life/http-adapter#readme",
"dependencies": {
"axios": "^0.18.1",
"chokidar": "^3.1.1",
"debug": "^4.1.1",
"fs-extra": "^8.1.0",
"good": "^8.1.2",
"js-yaml": "^3.13.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-onerror": "^4.1.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"koa2-cors": "^2.0.6",
"lodash": "^4.17.15",
"mz": "^2.7.0",
"os": "^0.1.1",
"prom-client": "^11.3.0",
"rxjs": "^6.5.3",
"ts-node": "^8.0.3",
"typescript": "^3.4.3",
"unzipper": "^0.10.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.10",
"@types/debug": "^4.1.3",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.11",
"@types/js-yaml": "^3.12.1",
"@types/koa": "^2.0.48",
"@types/koa-bodyparser": "^4.2.2",
"@types/koa-router": "^7.0.40",
"@types/koa-static": "^4.0.1",
"@types/koa2-cors": "^2.0.1",
"@types/lodash": "^4.14.123",
"@types/mz": "0.0.32",
"@types/node": "^11.13.4",
"@types/unzipper": "^0.10.0",
"@types/uuid": "^3.4.4",
"clean-webpack-plugin": "^0.1.19",
"codecov": "^3.3.0",
"cross-env": "^5.2.0",
"jest": "^24.7.1",
"jest-junit": "^6.3.0",
"nodemon": "^1.18.11",
"ts-jest": "^24.0.2",
"ts-loader": "^5.3.3",
"tslint": "^5.15.0",
"webpack": "^4.26.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2"
}
}