-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "@tabetalt/service-deployment-action",
"version": "1.0.0",
"repository": "github:tabetalt/service-version-action",
"license": "Apache-2.0",
"main": "index.js",
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"postbuild": "ncc build build/src/main.js -o dist",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage src/**/*",
"test:watch": "jest --watch",
"codecov": "codecov"
},
"jest": {
"preset": "ts-jest"
},
"dependencies": {
"@actions/cache": "^1.0.2",
"@actions/core": "^1.2.4"
},
"devDependencies": {
"@types/faker": "^4.1.12",
"@types/flat": "^5.0.1",
"@types/jest": "~26.0.3",
"@types/node": "~12.12.47",
"@typescript-eslint/eslint-plugin": "~3.8.0",
"@typescript-eslint/parser": "~3.8.0",
"@zeit/ncc": "^0.22.3",
"eslint": "~7.6.0",
"eslint-config-prettier": "~6.11.0",
"eslint-plugin-jest": "~23.20.0",
"faker": "^4.1.0",
"jest": "~26.2.2",
"nock": "^13.0.2",
"prettier": "^2.0.5",
"rimraf": "~3.0.2",
"ts-jest": "~26.1.1",
"ts-loader": "^8.0.2",
"tsutils": "~3.17.0",
"typescript": "~3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}