generated from onichandame/github-action-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 893 Bytes
/
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
{
"version": "0.0.0",
"license": "MIT",
"main": "lib/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc && ncc build",
"test": "jest --passWithNoTests",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"lint": "yarn format"
},
"husky": {
"hooks": {
"pre-commit": "yarn format",
"pre-push": "yarn test && yarn build"
}
},
"name": "github-action",
"author": "onichandame",
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/exec": "^1.0.4"
},
"devDependencies": {
"@types/jest": "^26.0.9",
"@types/node": "^14.0.27",
"@zeit/ncc": "^0.22.3",
"husky": "^4.2.5",
"jest": "^26.2.2",
"prettier": "^2.0.5",
"ts-jest": "^26.1.4",
"tslib": "^2.0.1",
"typescript": "^3.9.7"
}
}