forked from kiwicom/eslint-plugin-consistent-import
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 KB
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
{
"name": "eslint-plugin-consistent-modules-import",
"version": "0.0.7",
"description": "This plugin contains rule to check for consistent imports",
"keywords": ["eslint", "eslintplugin", "eslint-plugin"],
"author": "Richard Ivan",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/kiwi-code/eslint-plugin-consistent-import.git"
},
"scripts": {
"test": "jest --watch",
"compile":
"babel --presets es2015,stage-2 -d lib/ src/ && uglifyjs lib/index.js -o lib/index.js",
"prepublish": "npm run compile"
},
"dependencies": {
"eslint": "^3.18.0",
"ramda": "^0.23.0",
"requireindex": "~1.1.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-plugin-ramda": "^1.2.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.2.0",
"jest": "^19.0.2",
"regenerator-runtime": "^0.10.3",
"uglify-js": "^2.8.18"
},
"engines": {
"node": ">=0.10.0"
},
"license": "ISC"
}