-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
59 lines (59 loc) · 1.72 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": "7.4.0",
"author": "Omer Ganim <ganimomer@gmail.com>",
"description": "Lodash specific linting rules for ESLint",
"main": "src/index.js",
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint . --cache",
"test": "npm run lint && npm run unit-test",
"unit-test": "cross-env nyc mocha \"tests/**/*.js\" --reporter=dot",
"patch": "npm version patch -m\"update version to %s\" && git push --follow-tags",
"minor": "npm version minor -m\"update version to %s\" && git push --follow-tags",
"major": "npm version major -m\"update version to %s\" && git push --follow-tags",
"version": "auto-changelog -p && git add CHANGELOG.md && git commit -m'update change log' && git push"
},
"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"
},
"devDependencies": {
"auto-changelog": "^2.4.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.16.0",
"eslint-config-wix-editor": "^8.4.2",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-eslint-plugin": "^4.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-traverser": "^1.5.2",
"mocha": "^9.2.2",
"nyc": "^15.1.0"
},
"engines": {
"node": ">=10"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"lodash"
],
"license": "MIT",
"dependencies": {
"lodash": "^4.17.21"
},
"packageManager": "yarn@3.1.1"
}