-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
39 lines (39 loc) · 913 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
{
"name": "flake8",
"version": "2.3.0",
"description": "py-actions Python flake8 linting GitHub Action",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/*.js",
"lint:fix": "eslint src/*.js --fix",
"package": "ncc build src/index.js -o dist",
"test": "eslint src/*.js && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/py-actions/flake8.git"
},
"keywords": [
"GitHub",
"Actions",
"python",
"python3",
"linting",
"flake8"
],
"author": "py-actions Authors",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/py-actions/flake8/issues"
},
"homepage": "https://github.com/py-actions/flake8",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.4.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0"
}
}