UNPKG

1.42 kBJSONView Raw
1{
2 "name": "eslint-plugin-lodash",
3 "version": "2.4.3",
4 "author": "Omer Ganim <ganimomer@gmail.com>",
5 "description": "Lodash specific linting rules for ESLint",
6 "main": "lib/index.js",
7 "scripts": {
8 "coveralls": "nyc report --reporter=text-lcov | coveralls",
9 "lint": "eslint ./",
10 "test": "npm run lint && npm run unit-test",
11 "unit-test": "cross-env NODE_ENV=test nyc mocha tests/**/*.js --reporter=dot",
12 "build": "babel src -d lib",
13 "prepublish": "npm run build"
14 },
15 "files": [
16 "LICENSE",
17 "README.md",
18 "lib"
19 ],
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/wix/eslint-plugin-lodash"
23 },
24 "homepage": "https://github.com/wix/eslint-plugin-lodash",
25 "bugs": "https://github.com/wix/eslint-plugin-lodash/issues",
26 "peerDependencies": {
27 "eslint": ">=2.10.0"
28 },
29 "dependencies": {
30 "lodash": "~4.17.0"
31 },
32 "devDependencies": {
33 "babel-cli": "6.24.1",
34 "babel-plugin-istanbul": "4.1.1",
35 "babel-preset-es2015": "6.24.1",
36 "babel-register": "6.24.1",
37 "coveralls": "2.13.0",
38 "cross-env": "4.0.0",
39 "eslint": "3.19.0",
40 "eslint-config-wix-editor": "0.2.3",
41 "eslint-traverser": "1.5.2",
42 "istanbul": "^0.4.4",
43 "mocha": "3.3.0",
44 "nyc": "10.2.0"
45 },
46 "engines": {
47 "node": ">=0.12.0"
48 },
49 "keywords": [
50 "eslint",
51 "eslint-plugin",
52 "eslintplugin",
53 "lodash"
54 ],
55 "license": "MIT"
56}