forked from sagiavinash/eslint-plugin-organize-imports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 928 Bytes
/
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
{
"name": "eslint-plugin-import-comments",
"version": "0.0.24",
"description": "ESLint plugin boilerplate",
"main": "index.js",
"scripts": {
"major-release": "npm version major && npm publish && git push --follow-tags",
"minor-release": "npm version minor && npm publish && git push --follow-tags",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"test": "mocha tests/lib/rules/index.js"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin"
],
"license": "MIT",
"devDependencies": {
"babel": "^6.23.0",
"babel-eslint": "^8.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "4",
"mocha": "3.1.0"
},
"peerDependencies": {
"eslint": "^2.0.0 || ^3.0.0 || ^4.0.0"
},
"engines": {
"node": ">=0.10"
},
"dependencies": {
"lodash": "^4.17.5",
"minimatch": "^3.0.4"
}
}