-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 856 Bytes
/
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
{
"name": "wolfie2d",
"version": "1.0.0",
"description": "A game engine written in TypeScript",
"main": "./dist/main.js",
"scripts": {
"test": "jest --verbose=false --noStackTrace --passWithNoTests",
"build": "gulp build"
},
"author": "Joe Weaver",
"license": "ISC",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/seed-random": "^2.2.1",
"browserify": "^16.5.1",
"fancy-log": "^1.3.3",
"gulp": "^4.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^28.1.0",
"ts-jest": "^28.0.2",
"tsify": "^5.0.0",
"typescript": "^4.7.4",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.1"
},
"dependencies": {
"seed-random": "^2.2.0"
}
}