-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "eslint-config-b2broker",
"version": "2.0.1",
"description": "Shareable ESLint config",
"main": "index.js",
"type": "commonjs",
"types": "index.d.ts",
"engines": {
"node": ">=16.14.2",
"npm": ">=8.5.0"
},
"scripts": {
"commitlint": "commitlint --verbose",
"commitlint:all": "npm run commitlint -- --from=$( git rev-list --max-parents=0 $( git rev-parse --abbrev-ref HEAD ) )",
"install:clean": "rm -fr node_modules && rm -f package-lock.json && npm install",
"lint": "eslint ./",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"prettier": "prettier -c .",
"prettier:write": "npm run prettier -- --write",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/b2broker/eslint-config.git"
},
"keywords": [
"ESLint",
"config",
"b2broker"
],
"author": "Sergey Bakulin <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/b2broker/eslint-config/issues"
},
"homepage": "https://github.com/b2broker/eslint-config#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"commitlint-config-b2broker": "^1.0.6",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2"
},
"peerDependencies": {
"eslint": "^8.13.0"
}
}