-
Notifications
You must be signed in to change notification settings - Fork 8
/
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": "@krizzu/eslint-check-action",
"version": "1.1.0",
"description": "GitHub action running eslint check in your project, annotating errors/warnings in PR.",
"main": "dist/index.js",
"author": "Krzysztof Borowy <dev@krizzu.dev>",
"license": "MIT",
"scripts": {
"test": "tsc",
"dev": "source .env && yarn build && node dist/index.js",
"build": "rm -rf dist/ && babel src --out-dir dist/ --extensions .ts"
},
"dependencies": {
"@actions/core": "1.2.0",
"@actions/github": "1.1.0",
"eslint": "6.6.0"
},
"devDependencies": {
"@babel/cli": "7.7.0",
"@babel/core": "7.7.2",
"@babel/plugin-proposal-class-properties": "7.7.0",
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/preset-env": "7.7.1",
"@babel/preset-typescript": "7.7.2",
"@types/eslint": "6.1.3",
"eslint-config-krizzu": "1.0.3",
"typescript": "3.7.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/Krizzu/eslint-check-action.git"
},
"keywords": [
"eslint",
"github",
"action",
"check",
"runner",
"ci",
"lint"
]
}