generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "actions-dpn-python-lint",
"version": "1.0.0",
"private": true,
"description": "Runs common python linters",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"all": "npm run build && npm run format && npm run lint && npm run pack"
},
"repository": {
"type": "git",
"url": "https://github.com/bobbyrward/actions-dpn-python-lint"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "YourNameOrOrganization",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.1",
"@actions/io": "^1.0.1"
},
"devDependencies": {
"@types/node": "^12.0.4",
"@typescript-eslint/parser": "^1.9.0",
"@zeit/ncc": "^0.20.5",
"eslint": "^5.0.0",
"eslint-plugin-github": "^2.0.0",
"prettier": "^1.19.1",
"js-yaml": "^3.13.1",
"typescript": "^3.5.1",
"acorn": "^6.0.0"
}
}