-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.77 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
52
53
54
55
{
"name": "eslint-plugin-organize-imports",
"version": "0.0.47",
"description": "ESLint plugin boilerplate",
"main": "index.js",
"repository": "https://github.com/sagiavinash/eslint-plugin-organize-imports.git",
"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",
"build": "webpack --config=webpack.config.js",
"build-test": "webpack -p --config=webpack.config.tests.js",
"babel-src": "babel lib --out-dir dist/lib",
"babel-test": "babel tests --out-dir dist/tests",
"lint": "eslint --ext js ./lib ./tests",
"lint-fix": "eslint --fix --ext js ./lib ./tests",
"test": "npm run babel-src > /dev/null;npm run babel-test > /dev/null;mocha dist/tests/lib/rules/index.js",
"prepublish": "npm run babel-src"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin"
],
"license": "MIT",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.0.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"mocha": "4",
"uglifyjs-webpack-plugin": "1.2.5",
"webpack": "4.6.0",
"webpack-cli": "2.1.2"
},
"peerDependencies": {
"eslint": "^2.0.0 || ^3.0.0 || ^4.0.0"
},
"engines": {
"node": ">=0.10"
},
"dependencies": {
"babel-preset-env": "1.6.1",
"babel-preset-stage-3": "^6.24.1",
"lodash": "^4.17.5",
"minimatch": "^3.0.4"
}
}