forked from import-js/eslint-plugin-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.49 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
{
"name": "eslint-plugin-import",
"version": "0.9.1",
"description": "Import with sanity.",
"main": "lib/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"watch": "babel -d lib/ src/ --watch & mocha --recursive --reporter dot --compilers js:babel/register --watch tests/src/",
"cover": "eslint ./src && istanbul cover --dir reports/coverage _mocha tests/src/ -- --recursive --reporter dot --compilers js:babel-core/register",
"test": "mocha --recursive --reporter dot tests/lib/",
"debug": "mocha debug --recursive --reporter dot tests/lib/",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"pretest": "eslint ./src && npm run compile && babel -d tests/lib/ tests/src/"
},
"repository": {
"type": "git",
"url": "https://github.com/benmosher/eslint-plugin-import"
},
"keywords": [
"eslint",
"eslintplugin",
"es6",
"jsnext",
"modules",
"import",
"export"
],
"author": "Ben Mosher <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/benmosher/eslint-plugin-import/issues"
},
"homepage": "https://github.com/benmosher/eslint-plugin-import",
"devDependencies": {
"babel": "5.x",
"babel-eslint": "^4.1.4",
"chai": "^3.4.0",
"eslint": ">=1.8.0",
"istanbul": "^0.4.0",
"mocha": "^2.2.1"
},
"peerDependencies": {
"eslint": ">=1.4.0"
},
"dependencies": {
"babel-runtime": "5.x",
"babylon": "6.1.2",
"resolve": "1.1.6"
}
}