-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
57
58
59
{
"name": "template-typescript-github-action",
"version": "1.0.0",
"private": true,
"description": "Github Action NodeJS project template",
"main": "build/index.js",
"license": "MIT",
"scripts": {
"compile": "tsc",
"clean": "rimraf build",
"lint": "eslint --fix src/**/*.ts",
"build": "npm run compile && ncc build build/index.js",
"start": "cross-env RUNNER_TEMP=build node dist/index.js",
"release": "npm run lint && npm run build && npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiberbee/template-typescript-github-action.git"
},
"keywords": [
"nodejs",
"typescript",
"github-action",
"project-template"
],
"author": {
"name": "Vlad Volkov",
"email": "[email protected]",
"url": "https://github.com/vladyslavvolkov"
},
"dependencies": {
"@actions/cache": "^1.0.2",
"@actions/core": "^1.2.4",
"@actions/exec": "^1.0.4",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.6.0"
},
"devDependencies": {
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.0",
"@zeit/ncc": "^0.22.3",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn release && git add ."
}
}
}