-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.41 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
{
"name": "action-template",
"version": "0.0.0",
"description": "my cool project",
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build:tsc": "tsc",
"build": "ncc build src/index.ts -o dist",
"test": "npm run lint && npm run jest",
"test:cov": "npm run lint && npm run jest:cov",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"jest": "jest --detectOpenHandles --forceExit",
"jest:cov": "jest --coverage --detectOpenHandles --forceExit",
"prepublishOnly": "npm run build",
"prepare": "husky install"
},
"keywords": [
"actions"
],
"types": "./dist/index.d.ts",
"author": "zcong1993",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^12.1.2",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
},
"jest": {
"preset": "ts-jest",
"collectCoverageFrom": [
"src/**/*.ts"
]
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0"
}
}