-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.97 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.97 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
{
"name": "function-watcher",
"version": "1.0.2",
"scripts": {
"start": "yarn build && node --trace-warnings build/index.js",
"start:prod": "node index.js",
"test": "jest --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-watcher.git"
},
"author": "Tiago Nápoli <napoli.tiago96@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/hermes-serverless/function-watcher/issues"
},
"homepage": "https://github.com/hermes-serverless/function-watcher#readme",
"dependencies": {
"@hermes-serverless/custom-promises": "^0.1.0",
"@hermes-serverless/fs-utils": "^0.0.2",
"@hermes-serverless/stream-utils": "^0.4.0",
"@hermes-serverless/subprocess": "^0.2.1",
"colors": "^1.3.3",
"express": "^4.16.4",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"ramda": "^0.26.1",
"redis": "^2.8.0",
"winston": "^3.2.1",
"wtfnode": "^0.8.0"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/jest": "^24.0.11",
"@types/morgan": "^1.7.35",
"@types/ramda": "^0.26.9",
"@types/redis": "^2.8.13",
"@types/request": "^2.48.2",
"@types/wtfnode": "^0.7.0",
"axios": "^0.19.0",
"coveralls": "^3.0.7",
"execa": "^2.0.3",
"get-stream": "^5.1.0",
"jest": "^24.7.1",
"nodemon": "^1.19.0",
"prettier": "^1.17.0",
"request": "^2.88.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.4"
}
}