-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.43 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-plugin-grommet",
"version": "0.2.0",
"main": "lib/index.js",
"description": "Lint rules to use with Grommet.",
"authors": [
"Taylor Seamans",
"Eric Soderberg"
],
"license": "Apache-2.0",
"bugs": "https://github.com/grommet/eslint-plugin-grommet/issues",
"repository": {
"type": "git",
"url": "https://github.com/grommet/eslint-plugin-grommet.git"
},
"scripts": {
"build": "rm -rf dist && mkdir dist && cp -r lib/ dist/lib && cp LICENSE README.md package.json dist/",
"lint-fix": "eslint lib tests --fix",
"prettier": "pretty-quick --staged",
"release-stable": "babel-node ./tools/release-stable.mjs",
"test": "mocha tests --recursive"
},
"dependencies": {
"requireindex": "~1.1.0"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21.8",
"@babel/node": "^7.20.7",
"del": "^6.1.1",
"eslint": "^8.41.0",
"eslint-plugin-eslint-plugin": "^5.1.0",
"eslint-plugin-node": "^11.1.0",
"fs-extra": "^11.1.1",
"mocha": "^10.2.0",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.1",
"simple-git": "^3.18.0"
},
"peerDependencies": {
"eslint": ">= 7.31.0"
},
"engines": {
"node": ">=16"
},
"pre-commit": [
"lint-fix",
"prettier",
"test"
],
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"grommet",
"accessibility"
]
}