-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
executable file
·37 lines (37 loc) · 1.06 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
{
"name": "game-template",
"type": "3d",
"uuid": "65f793ac-29ed-44ac-af15-ae68a4d6579d",
"version": "3.0.0-Preview.1",
"dependencies": {
"bluebird": "^3.7.2",
"lodash": "^4.17.20"
},
"devDependencies": {
"@types/bluebird": "^3.5.33",
"@types/lodash": "^4.14.165",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"typescript": "^4.1.2"
},
"scripts": {
"tsc-check": "tsc --noEmit",
"lint": "eslint $(git diff --cached --name-only | grep \\.ts$)",
"lint-fix": "eslint --fix $(git diff --cached --name-only | grep \\.ts$)"
},
"pre-commit": [
"tsc-check",
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yanjifa/game-template.git"
},
"author": "yanjifa",
"license": "ISC",
"bugs": {
"url": "https://github.com/yanjifa/game-template/issues"
},
"homepage": "https://github.com/yanjifa/game-template#readme"
}