forked from eslint-plugins/eslint-plugin-lodash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "eslint-plugin-full-import",
"version": "0.1.2",
"description": "ESLint plugin for preventing accidental full import of huge libraries",
"author": "Mouad Debbar <[email protected]>",
"main": "lib/index.js",
"files": [
"LICENSE",
"README.md",
"lib"
],
"scripts": {
"test": "yarn lint && mocha",
"build": "rm -rf lib && babel src --out-dir lib",
"lint": "eslint ./",
"release": "release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mdebbar/eslint-plugin-full-import.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mdebbar/eslint-plugin-full-import/issues"
},
"homepage": "https://github.com/mdebbar/eslint-plugin-full-import#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.0.0",
"mocha": "^3.5.2",
"release-script": "^1.0.2"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"full-import",
"lodash",
"aws-sdk"
]
}