UNPKG

1.56 kBJSONView Raw
1{
2 "name": "eslint-plugin-lodash",
3 "version": "4.0.0",
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 "clean": "rimraf lib",
10 "lint": "eslint ./",
11 "test": "npm run lint && npm run unit-test",
12 "unit-test": "cross-env NODE_ENV=test nyc mocha tests/**/*.js --reporter=dot",
13 "babel": "babel src -d lib",
14 "build": "npm run clean && npm run babel",
15 "prepublish": "npm run build"
16 },
17 "files": [
18 "LICENSE",
19 "README.md",
20 "lib"
21 ],
22 "repository": {
23 "type": "git",
24 "url": "https://github.com/wix/eslint-plugin-lodash"
25 },
26 "homepage": "https://github.com/wix/eslint-plugin-lodash",
27 "bugs": "https://github.com/wix/eslint-plugin-lodash/issues",
28 "peerDependencies": {
29 "eslint": ">=2.10.0"
30 },
31 "dependencies": {
32 "lodash": "4.17.10"
33 },
34 "devDependencies": {
35 "babel-cli": "6.26.0",
36 "babel-plugin-istanbul": "4.1.6",
37 "babel-preset-es2015": "6.24.1",
38 "babel-register": "6.26.0",
39 "coveralls": "3.0.1",
40 "cross-env": "5.2.0",
41 "eslint": "4.19.1",
42 "eslint-config-wix-editor": "3.4.0",
43 "eslint-plugin-eslint-plugin": "1.4.0",
44 "eslint-traverser": "1.5.2",
45 "istanbul": "^0.4.4",
46 "mocha": "5.2.0",
47 "nyc": "12.0.2",
48 "rimraf": "2.6.2"
49 },
50 "engines": {
51 "node": ">=0.12.0"
52 },
53 "keywords": [
54 "eslint",
55 "eslint-plugin",
56 "eslintplugin",
57 "lodash"
58 ],
59 "license": "MIT"
60}