-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "version-watchdog",
"version": "0.0.0",
"private": true,
"devDependencies": {
"@types/jest": "~26.0.19",
"@types/node": "~14.14.20",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "~4.12.0",
"@typescript-eslint/parser": "~4.12.0",
"eslint": "~7.17.0",
"eslint-config-prettier": "~7.1.0",
"eslint-plugin-jest": "~24.1.3",
"jest": "~26.6.3",
"prettier": "~2.2.1",
"rimraf": "~3.0.2",
"ts-jest": "~26.4.4",
"tsutils": "~3.18.0",
"typescript": "~4.1.3"
},
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests"
},
"license": "MIT",
"dependencies": {
"@octokit/rest": "^18.2.0",
"js-base64": "^3.6.0",
"node-fetch": "^2.6.1",
"puppeteer": "^7.1.0",
"tslib": "~2.0.3"
}
}