forked from wix-incubator/eslint-plugin-lodash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.65 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
54
55
56
57
58
59
{
"name": "eslint-plugin-lodash",
"version": "6.0.1",
"author": "Omer Ganim <[email protected]>",
"description": "Lodash specific linting rules for ESLint",
"main": "src/index.js",
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"test": "npm run lint && npm run unit-test",
"unit-test": "cross-env NODE_ENV=test nyc mocha tests/**/*.js --reporter=dot",
"patch": "npm version patch -m\"update version to %s\" && git push && git push --tags",
"minor": "npm version minor -m\"update version to %s\" && git push && git push --tags",
"major": "npm version major -m\"update version to %s\" && git push && git push --tags"
},
"files": [
"LICENSE",
"README.md",
"src",
"docs"
],
"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": ">=2.10.0"
},
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"babel-plugin-istanbul": "^5.2.0",
"coveralls": "^3.0.7",
"cross-env": "^6.0.3",
"eslint": "^6.6.0",
"eslint-config-wix-editor": "^7.3.0",
"eslint-plugin-eslint-plugin": "^2.1.0",
"eslint-traverser": "^1.5.2",
"istanbul": "^0.4.5",
"mocha": "^6.2.2",
"nyc": "^14.1.1"
},
"engines": {
"node": ">=6"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"lodash"
],
"license": "MIT"
}