-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.36 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": "@gamesdonequick/eslint-config",
"version": "0.0.0-development",
"description": "GDQ's re-usable config for the ESLint JS/TS linter.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GamesDoneQuick/eslint-config.git"
},
"author": "Games Done Quick, LLC <engineering@gamesdonequick.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/GamesDoneQuick/eslint-config/issues"
},
"homepage": "https://github.com/GamesDoneQuick/eslint-config#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-xo": "^0.29.1",
"eslint-config-xo-typescript": "^0.27.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@gamesdonequick/prettier-config": "^2.2.0",
"husky": "^4.2.5",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"semantic-release": "^17.0.6"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
},
"publishConfig": {
"access": "public"
}
}