-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
52
53
54
55
56
57
58
59
{
"name": "eslint-config-oceanprotocol",
"version": "2.0.4",
"description": "ESLint configuration for all of Ocean Protocol's JavaScript",
"main": "index.js",
"scripts": {
"test": "eslint --ignore-path .gitignore --ext .js .",
"format": "prettier --ignore-path .gitignore --write '**/*.js'",
"release": "release-it --non-interactive",
"changelog": "auto-changelog -p"
},
"author": "Ocean Protocol",
"license": "Apache-2.0",
"keywords": [
"eslint",
"eslintconfig",
"config",
"oceanprotocol",
"javascript",
"styleguide"
],
"dependencies": {
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-security": "^1.5.0"
},
"devDependencies": {
"auto-changelog": "^2.4.0",
"prettier": "^2.7.1",
"release-it": "^15.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oceanprotocol/eslint-config-oceanprotocol.git"
},
"release-it": {
"hooks": {
"before:init": "npm test",
"after:bump": "npm run changelog"
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
}
}
}