forked from AlexMost/eslint-plugin-deprecate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "eslint-plugin-deprecate",
"version": "0.8.5",
"description": "",
"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"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AlexMost/eslint-plugin-deprecate.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexMost/eslint-plugin-deprecate/issues"
},
"homepage": "https://github.com/AlexMost/eslint-plugin-deprecate#readme",
"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"
}
}