This repository has been archived by the owner on Jan 16, 2025. It is now read-only.
forked from juanpinheiro/eslint-plugin-deprecate-classnames
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.5 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
{
"name": "eslint-plugin-deprecate-classnames-many",
"version": "1.0.4",
"description": "An ESLint plugin with rules reporting usage of deprecated css classes, and allows multiple rules",
"main": "dist/index.js",
"scripts": {
"test": "mocha --compilers js:babel-register --recursive tests/**/*.js",
"build": "babel lib --out-dir dist",
"lint": "eslint lib tests",
"fix": "eslint --fix lib tests",
"preversion": "npm run lint && npm run test",
"prepublish": "npm run build"
},
"keywords": [
"eslint",
"deprecation",
"deprecate function",
"classnames",
"plugin",
"react",
"classname",
"css",
"eslint-plugin"
],
"repository": {
"type": "git",
"url": "[email protected]:jasperfirecai2/eslint-plugin-deprecate-classnames-many.git"
},
"author": "jasperfirecai2",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasperfirecai2/eslint-plugin-deprecate-classnames-many/issues"
},
"homepage": "https://github.com/jasperfirecai2/eslint-plugin-deprecate-classnames-many/blob/main/README.md",
"peerDependencies": {
"eslint": ">=2.x"
},
"devDependencies": {
"@evo/eslint-config-uaprom": "^2.0.2",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.23.0",
"eslint": ">=2.x",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"mocha": "3.2.0"
}
}