-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 918 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 918 Bytes
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
{
"name": "eslint-plugin-baseui-clean-overrides",
"version": "1.0.0",
"description": "Use constants instead of writing overrides inline",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"baseui",
"overrides"
],
"author": "Trey Shedrick",
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha tests --recursive",
"publish:patch": "npm version patch --force && npm publish",
"publish:minor": "npm version minor --force && npm publish",
"publish:major": "npm version major --force && npm publish"
},
"dependencies": {
"requireindex": "^1.1.0"
},
"devDependencies": {
"eslint": "^7.1.0",
"eslint-plugin-eslint-plugin": "^3.2.0",
"eslint-plugin-node": "^11.0.0",
"mocha": "^9.0.0"
},
"engines": {
"node": "12.x || 14.x || >= 16"
},
"peerDependencies": {
"eslint": ">=6"
},
"license": "ISC"
}