-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "eslint-plugin-7g",
"version": "5.0.1",
"description": "ESLint rules to help enforce coding style at 7Geese",
"main": "index.js",
"scripts": {
"lint": "eslint ./lib/** --ext .js --quiet",
"lint:loud": "eslint ./lib/** --ext .js",
"lint:fix": "eslint ./lib/** --ext .js --fix",
"test:js": "jest --watch",
"bench": "node ./benchmarks/benchmark.js",
"bench:update": "node ./benchmarks/benchmark.js --update",
"test": "npm run lint:loud && jest",
"release": "np --no-yarn"
},
"engines": {
"node": ">= 10"
},
"dependencies": {
"jsx-ast-utils": "2.2.0"
},
"devDependencies": {
"@babel/core": "7.12.3",
"@babel/eslint-parser": "7.12.1",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/preset-react": "7.12.1",
"chalk": "4.1.0",
"convert-hrtime": "3.0.0",
"eslint": "^7.12.1",
"eslint-config-7geese": "5.0.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-promise": "4.2.1",
"jest": "26.6.2",
"np": "7.0.0"
},
"peerDependencies": {
"eslint": ">= 5.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/7Geese/eslint-plugin-7g.git"
},
"license": "MIT",
"homepage": "https://github.com/7Geese/eslint-plugin-7g#readme",
"author": "7Geese",
"private": false
}