forked from wix-incubator/eslint-plugin-lodash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "eslint-plugin-lodash",
"version": "1.9.4",
"author": "Omer Ganim <[email protected]>",
"description": "Lodash specific linting rules for ESLint",
"main": "lib/index.js",
"scripts": {
"coveralls": "cat ./reports/coverage/lcov.info | coveralls",
"lint": "eslint ./",
"test": "npm run lint && npm run unit-test",
"unit-test": "istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --reporter dot",
"prepublish": "babel src -d lib"
},
"files": [
"LICENSE",
"README.md",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/wix/eslint-plugin-lodash"
},
"homepage": "https://github.com/wix/eslint-plugin-lodash",
"bugs": "https://github.com/wix/eslint-plugin-lodash/issues",
"peerDependencies": {
"eslint": ">=1.3.0"
},
"dependencies": {
"lodash": "^4.9.0"
},
"devDependencies": {
"babel-cli": "6.9.0",
"babel-preset-es2015": "6.9.0",
"coveralls": "2.11.9",
"eslint": "2.11.0",
"eslint-config-wix-editor": "0.2.3",
"istanbul": "0.4.3",
"mocha": "2.5.3"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"lodash"
],
"license": "MIT"
}