-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "booyah",
"version": "3.2.1",
"description": "HTML5 game engine",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "jest",
"testWatch": "jest --watch",
"checkTypes": "tsc --noEmit",
"checkLinting": "yarn eslint",
"checkFormatting": "yarn prettier --check ./src",
"checkAll": "yarn checkTypes && yarn checkLinting && yarn checkFormatting",
"prettier": "npx prettier ./src --write",
"docs": "yarn typedoc"
},
"license": "MIT",
"dependencies": {
"@types/underscore": "~1.11.14",
"eventemitter3": "^5.0.1",
"typescript": "^5.2.2",
"underscore": "~1.13"
},
"repository": "https://github.com/play-curious/booyah.git",
"author": "Jesse Himmelstein",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/css-font-loading-module": "^0.0.12",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.7"
}
}