-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
39 lines (39 loc) · 1.08 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": "action-snapcraft",
"version": "3.0.1",
"description": "GitHub Action for setting up Snapcraft",
"author": {
"name": "Samuel Meuli",
"email": "me@samuelmeuli.com",
"url": "https://samuelmeuli.com"
},
"repository": "github:samuelmeuli/action-snapcraft",
"license": "MIT",
"private": true,
"main": "./index.js",
"scripts": {
"lint": "eslint --ignore-path ./.gitignore --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
}
},
"prettier": "@samuelmeuli/prettier-config"
}