forked from you-dont-need/You-Dont-Need-Lodash-Underscore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "eslint-plugin-you-dont-need-lodash-underscore",
"version": "6.12.0",
"description": "Check methods you can use natively without lodash/underscore",
"repository": {
"type": "git",
"url": "https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore.git"
},
"keywords": [
"underscore",
"lodash",
"eslint",
"eslintplugin",
"eslint-plugin",
"native"
],
"author": "Robert Chang <[email protected]>",
"contributors": [
"Patrick McElhaney <[email protected]> (http://patrickmcelhaney.com)",
"Steve Mao <[email protected]> (https://github.com/stevemao)"
],
"main": "index.js",
"scripts": {
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test": "istanbul cover tests",
"test:unit": "mocha tests/unit"
},
"dependencies": {
"kebab-case": "^1.0.0"
},
"devDependencies": {
"coveralls": "^2.11.9",
"eslint": "^4.18.2",
"istanbul": "^0.4.4",
"lodash": "^4.17.4",
"mocha": "^4.1.0"
},
"engines": {
"node": ">=4.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore/issues"
},
"homepage": "https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore.git"
}