-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.26 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
{
"name": "eslint-action",
"version": "1.1.5",
"main": "index.js",
"repository": "[email protected]:Khan/eslint-action.git",
"author": "Jared Forsyth <[email protected]>",
"license": "MIT",
"scripts": {
"format": "eslint --fix --ext .js .",
"format-files": "eslint --fix",
"lint": "./node_modules/.bin/eslint --ext .js .",
"test": "jest",
"dist": "ncc build eslint.js"
},
"devDependencies": {
"@actions/github": "^2.1.1",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/eslint-plugin": "^7.14.5",
"@babel/register": "^7.16.0",
"@zeit/ncc": "^0.22.1",
"actions-utils": "Khan/actions-utils#v1.4.0",
"actions-workflow-tools": "Khan/actions-workflow-tools#v1.2.5",
"chalk": "^2.4.2",
"cli-highlight": "^2.1.4",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-prettier": "^4.0.0",
"flow-bin": "^0.123.0",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "^2.4.1"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
"jest": "^26.0.1"
}
}