This repository has been archived by the owner on Mar 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.73 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "engine",
"version": "2.1.0",
"description": "Modern and customizable web-based engine",
"scripts": {
"watch": "webpack --watch --mode development",
"build": "webpack --mode production",
"test": "jest",
"testWithCoverage": "jest --coverage",
"format": "prettier --write src/**/*.ts",
"lint": "eslint --fix src/**/*.ts",
"lint:report": "eslint -f json -o eslint-report.json src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GameIndus/engine.git"
},
"keywords": [
"game-engine"
],
"author": "Utarwyn <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/GameIndus/engine/issues"
},
"homepage": "https://github.com/GameIndus/engine#readme",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^11.15.35",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"clean-webpack-plugin": "^2.0.2",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^24.9.0",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"ts-jest": "^24.3.0",
"ts-loader": "^5.4.5",
"typescript": "^3.9.7",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "prettier --write"
}
}