-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.08 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
{
"name": "eslint-plugin-no-inferred-method-name",
"version": "2.0.0",
"description": "ES6 object literal method linting for ESLint",
"main": "index.js",
"scripts": {
"lint": "eslint ./"
},
"files": [
"LICENSE.md",
"README.md",
"lib",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/johnstonbl01/eslint-no-inferred-method-name.git"
},
"homepage": "https://github.com/johnstonbl01/eslint-no-inferred-method-name",
"bugs": "https://github.com/johnstonbl01/eslint-no-inferred-method-name/issues",
"keywords": [
"eslint",
"eslint-plugin"
],
"author": "Blake Johnston <johnstonbl01@gmail.com>",
"license": "MIT",
"devDependencies": {
"eslint": "^6.5.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{lib, tests}/**/*.js": [
"prettier --write",
"npm run lint",
"git add"
],
"*.{json, md}": [
"prettier --write",
"git add"
]
}
}