-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "eslint-plugin-lodash",
"version": "0.1.4",
"description": "ESLint Plugin for use with the lodash library",
"main": "lib/index.js",
"directories": {
"lib": "lib/"
},
"files": [
"LICENSE",
"README.md",
"lib"
],
"scripts": {
"test": "npm run lint && mocha",
"build": "rm -rf lib && babel src --out-dir lib",
"lint": "eslint ./",
"release": "release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eslint-plugins/eslint-plugin-lodash.git"
},
"author": "Matthew L Smith <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eslint-plugins/eslint-plugin-lodash/issues"
},
"homepage": "https://github.com/eslint-plugins/eslint-plugin-lodash#readme",
"devDependencies": {
"babel": "^5.6.7",
"babel-eslint": "^4.0.5",
"eslint": "^1.0.0",
"eslint-config-airbnb": "0.0.8",
"eslint-plugin-react": "^3.3.2",
"is-my-json-valid": "^2.12.0",
"mocha": "^2.2.5",
"mt-changelog": "^0.6.1",
"release-script": "^0.5.0"
},
"keywords": [
"eslint-plugin",
"eslintplugin",
"eslint",
"lodash"
]
}