forked from samuelmeuli/action-electron-builder
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "action-electron-builder",
"version": "1.6.0",
"description": "GitHub Action for building and releasing Electron apps",
"author": {
"name": "Samuel Meuli",
"email": "[email protected]",
"url": "https://samuelmeuli.com"
},
"repository": "github:samuelmeuli/action-electron-builder",
"license": "MIT",
"private": true,
"main": "./index.js",
"scripts": {
"lint": "eslint --max-warnings 0 \"**/*.js\"",
"lint:fix": "yarn lint --fix",
"format": "prettier --ignore-path ./.gitignore --list-different \"**/*.{css,html,js,json,jsx,less,md,scss,ts,tsx,vue,yaml,yml}\"",
"format:fix": "yarn format --write"
},
"dependencies": {},
"peerDependencies": {},
"devDependencies": {
"@samuelmeuli/eslint-config": "^6.0.0",
"@samuelmeuli/prettier-config": "^2.0.1",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"prettier": "^2.0.4"
},
"eslintConfig": {
"root": true,
"extends": "@samuelmeuli/eslint-config",
"env": {
"node": true
}
},
"eslintIgnore": [
"node_modules/",
"test/"
],
"prettier": "@samuelmeuli/prettier-config"
}