-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 803 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 803 Bytes
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
{
"name": "gamework",
"version": "1.0.0",
"description": "A 2D js game framework",
"main": "index.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"build": "npx tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chadanuk/gamework.git"
},
"author": "Dan Chadwick",
"license": "MIT",
"bugs": {
"url": "https://github.com/chadanuk/gamework/issues"
},
"homepage": "https://github.com/chadanuk/gamework#readme",
"devDependencies": {
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"babel-jest": "^30.0.2",
"jest": "^30.0.3",
"jest-environment-jsdom": "^30.0.2",
"typescript": "^5.0.2"
}
}