-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.4 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
{
"name": "swingletree",
"description": "Enforce SonarQube quality gate checks in your GitHub pull requests",
"repository": {
"type": "git",
"url": "git@github.com:error418/swingletree.git"
},
"main": "index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"start": "npm run build && node bin/main.js",
"sass": "node-sass views/sass/main.scss -o static/css --output-style compressed",
"sass:watch": "npm run sass -- -w",
"build": "npm run sass && npm run build-ts && npm run tslint",
"test": "ts-mocha --exit",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"watch-debug": "nodemon --inspect bin/main.js",
"release": "semantic-release"
},
"dependencies": {
"@elastic/elasticsearch": "^7.3.0",
"@octokit/rest": "^16.28.6",
"@octokit/webhooks": "^6.2.2",
"basic-auth": "^2.0.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"express-github-webhook": "^1.0.6",
"inversify": "^5.0.1",
"js-yaml": "^3.13.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"nconf": "^0.10.0",
"node-cache": "^4.2.0",
"nunjucks": "^3.2.0",
"pug": "^2.0.4",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/basic-auth": "^1.1.2",
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.7",
"@types/chai-things": "0.0.33",
"@types/compression": "0.0.36",
"@types/express": "^4.17.0",
"@types/js-yaml": "^3.12.1",
"@types/jsonwebtoken": "^8.3.2",
"@types/mocha": "^5.2.7",
"@types/nconf": "^0.10.0",
"@types/node": "^12.6.8",
"@types/node-cache": "^4.1.3",
"@types/nunjucks": "^3.1.1",
"@types/redis": "^2.8.13",
"@types/request": "^2.48.2",
"@types/sinon": "^7.0.13",
"bootstrap-scss": "^4.3.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-things": "^0.2.0",
"eslint": "^6.1.0",
"mocha": "^6.2.0",
"mockserver": "^3.1.0",
"node-sass": "^4.12.0",
"nodemon": "^1.19.1",
"semantic-release": "^15.13.18",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"sinon-express-mock": "^2.2.0",
"ts-mocha": "^6.0.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"license": "GPL-3.0",
"private": true
}