-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "steam-game-preset",
"version": "1.0.0",
"description": "steam-game vue-cli preset",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js,.vue template"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JxJayden/steam-game-preset.git"
},
"author": "Jayden <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JxJayden/steam-game-preset/issues"
},
"homepage": "https://github.com/JxJayden/steam-game-preset#readme",
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.15.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css}": [
"prettier --write",
"eslint",
"git add"
]
}
}