-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 885 Bytes
/
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
{
"name": "eslint-plugin-deckgl",
"version": "0.0.4",
"description": "Deck.gl specific linting rules for ESLint",
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"deckgl"
],
"homepage": "https://github.com/jstaab/eslint-plugin-deckgl",
"bugs": "https://github.com/jstaab/eslint-plugin-deckgl/issues",
"repository": {
"type": "git",
"url": "https://github.com/jstaab/eslint-plugin-deckgl"
},
"license": "MIT",
"author": "Jasper Staab <[email protected]>",
"main": "index.js",
"files": [
"README.md",
"index.js"
],
"scripts": {
"prepare": "husky install"
},
"lint-staged": {
"*.{js}": "prettier --write",
"package.json": "sort-package-json"
},
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"sort-package-json": "^1.57.0"
}
}