-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 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
{
"name": "@mathrix-education/action-template",
"version": "1.0.0",
"description": "TypeScript GitHub Action boilerplate",
"keywords": [
"github-actions",
"actions",
"template"
],
"homepage": "https://github.com/mathrix-education/action-template#readme",
"bugs": {
"url": "https://github.com/mathrix-education/action-template/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Mathieu Bour",
"email": "[email protected]",
"url": "https://github.com/mathieu-bour"
},
"repository": "github:mathrix-education/action-template",
"main": "dist/index.js",
"scripts": {
"lint": "eslint \"src/**\"",
"lint:fix": "eslint --fix \"src/**\"",
"clean": "rimraf dist/*",
"build": "npm run clean && ncc build --source-map --no-source-map-register src/index.ts"
},
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/exec": "^1.0.4",
"@actions/tool-cache": "^1.5.5",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"private": true
}