-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.53 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
{
"name": "rundeck-slack-app",
"version": "0.1.0",
"description": "A Slack app written in NodeJS that controls Rundeck pipelines",
"repository": {
"type": "git",
"url": "https://github.com/craig-rueda/rundeck-slack-app"
},
"author": "Craig Rueda",
"license": "Apache-2.0",
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|(\\-|/)(test|spec))\\.tsx?$",
"testURL": "http://localhost/",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"verbose": true
},
"scripts": {
"clean": "rm -rf dist",
"start": "npm run serve",
"build": "npm run build-ts && npm run tslint",
"build-test": "npm run build && npm run test",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "jest --forceExit --coverage --verbose",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"dependencies": {
"@slack/client": "^4.8.0",
"async": "^2.6.1",
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"errorhandler": "^1.5.0",
"express": "^4.16.4",
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.11",
"moment": "^2.23.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"winston": "^2.4.0"
},
"devDependencies": {
"@types/async": "^2.0.45",
"@types/body-parser": "^1.16.8",
"@types/dotenv": "^4.0.2",
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.11.1",
"@types/jest": "^22.2.3",
"@types/lodash": "^4.14.91",
"@types/node": "^10.11.0",
"@types/request": "^2.48.1",
"@types/request-promise": "^4.1.42",
"@types/supertest": "^2.0.4",
"@types/winston": "^2.4.0",
"bluebird": "^3.5.3",
"chai": "^4.1.2",
"concurrently": "^3.5.1",
"jest": "^22.4.4",
"nodemon": "^1.13.0",
"supertest": "^3.0.0",
"ts-jest": "^22.4.6",
"ts-node": "^5.0.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}