-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "github-action-typescript-template",
"version": "0.0.0",
"description": "Get started quickly to create your own GitHub Action with TypeScript",
"main": "dist/index.js",
"scripts": {
"lint": "eslint index.ts",
"package": "ncc build index.ts -o dist",
"test": "npm run lint && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BeeMyDesk/github-action-typescript-template.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"TypeScript"
],
"author": "François Voron",
"license": "MIT",
"bugs": {
"url": "https://github.com/BeeMyDesk/github-action-typescript-template/issues"
},
"homepage": "https://github.com/BeeMyDesk/github-action-typescript-template#readme",
"dependencies": {
"@actions/core": "^1.2.2"
},
"devDependencies": {
"@types/jest": "^25.1.3",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"@zeit/ncc": "^0.21.1",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"typescript": "^3.8.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run package && git add dist/"
}
}
}