-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.66 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.66 KB
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
{
"name": "function-orchestrator",
"version": "0.1.0",
"scripts": {
"start": "yarn build && node --trace-warnings build/index.js",
"start:prod": "node index.js",
"test": "yarn unit-test && yarn integration-test-watcher",
"unit-test": "jest --logHeapUsage",
"integration-test-watcher": "./testUtils/integration-test-watcher.sh",
"inside-container/integration-test-watcher": "jest -c jest-integration-test.config.js --logHeapUsage",
"inside-container/watch-integration-test-watcher": "jest --watch -c jest-integration-test.config.js --logHeapUsage",
"build": "rm -rf build && yarn tsc",
"prepare": "yarn build",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"format": "prettier --config ./prettier.config.js --write \"src/**/*.ts\" \"src/**/*.js\"",
"preversion": "yarn lint && yarn format",
"version": "git add --all",
"postversion": "git push && git push --tags",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hermes-serverless/function-orchestrator.git"
},
"author": "Tiago Nápoli <napoli.tiago96@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/hermes-serverless/function-orchestrator/issues"
},
"homepage": "https://github.com/hermes-serverless/function-orchestrator#readme",
"dependencies": {
"@hermes-serverless/circular-buffer": "^0.1.0",
"@hermes-serverless/custom-promises": "^0.1.0",
"@hermes-serverless/fs-utils": "^0.0.2",
"axios": "^0.18.0",
"colors": "^1.3.3",
"double-ended-queue": "^2.1.0-0",
"execa": "^2.0.3",
"express": "^4.17.0",
"http-proxy": "^1.17.0",
"morgan": "^1.9.1",
"ramda": "^0.26.1",
"redis": "^2.8.0",
"signal-exit": "^3.0.2",
"winston": "^3.2.1",
"wtfnode": "^0.8.0"
},
"devDependencies": {
"@hermes-serverless/api-types-function-registry-api": "^0.0.3",
"@hermes-serverless/api-types-function-watcher": "^0.0.1",
"@types/double-ended-queue": "^2.1.1",
"@types/express": "^4.16.1",
"@types/http-proxy": "^1.17.0",
"@types/jest": "^24.0.11",
"@types/morgan": "^1.7.35",
"@types/node": "^12.6.9",
"@types/ramda": "^0.26.8",
"@types/redis": "^2.8.12",
"@types/supertest": "^2.0.8",
"coveralls": "^3.0.7",
"folder-hash": "^3.2.0",
"get-port": "^5.0.0",
"get-stream": "^5.1.0",
"jest": "^24.7.1",
"nodemon": "^1.19.0",
"prettier": "^1.17.0",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.4"
}
}