-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.02 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
{
"name": "@swingletree-oss/swingletree",
"description": "Enforce SonarQube quality gate checks in your GitHub pull requests",
"repository": {
"type": "git",
"url": "[email protected]:swingletree-oss/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": {},
"devDependencies": {
"@semantic-release/exec": "^5.0.0",
"@semantic-release/github": "^7.0.5",
"semantic-release": "^17.2.3"
},
"license": "GPL-3.0",
"private": true
}