-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "eslint-plugin-react-perf",
"version": "3.3.3",
"description": "Performance-minded React linting rules for ESLint",
"main": "index.js",
"scripts": {
"lint": "eslint",
"lint:watch": "esw --ext .js --watch .",
"test": "mocha tests/**/*.js",
"test:debug": "mocha --inspect-brk tests/**/*.js",
"test:watch": "mocha tests/**/*.js -w",
"test:coverage": "istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --reporter dot"
},
"keywords": [
"react",
"eslint",
"eslintplugin",
"eslint-plugin",
"perf"
],
"author": "Charles Vazac <cvazac@gmail.com>",
"contributors": [
"Valjean Clark III <valjeanbud@gmail.com>"
],
"repository": {
"type": "git",
"url": "git@github.com:cvazac/eslint-plugin-react-perf.git"
},
"license": "MIT",
"devDependencies": {
"eslint": "^9.12.0",
"istanbul": "^0.4.5",
"mocha": "^10.2.0"
},
"peerDependencies": {
"eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
},
"engines": {
"node": ">=6.9.1"
}
}