-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.6 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
46
47
48
49
50
51
{
"name": "@serverless/eslint-config",
"version": "5.1.0",
"description": "ESLint & Prettier config for Serveless projects",
"keywords": [
"lint",
"eslint",
"prettier"
],
"author": "serverless.com",
"repository": "serverless/eslint-config",
"eslintConfig": {
"extends": "./node/6",
"root": true
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
}
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"eslint": "^8.43.0",
"eslint-plugin-import": "^2.27.5",
"git-list-updated": "^1.2.1",
"github-release-from-cc-changelog": "^2.3.0",
"prettier": "^2.8.8",
"standard-version": "^9.5.0"
},
"peerDependencies": {
"eslint": ">=6"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"commitlint": "commitlint -f HEAD@{15}",
"lint:updated": "pipe-git-updated --ext=js --base=main -- eslint --ignore-path .gitignore",
"prepare-release": "standard-version && prettier --write CHANGELOG.md",
"prettier-check": "prettier -c --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
"prettier-check:updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml --base=main -- prettier -c",
"prettify": "prettier --write --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
"prettify:updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml --base=main -- prettier --write"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=6.0"
},
"license": "MIT"
}