-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
57 lines (57 loc) · 1.18 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
{
"name": "myapp",
"version": "0.0.1",
"description": "Web Application Practice",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest"
},
"keywords": [
"physics engine",
"programming language"
],
"author": "Kimio Kuramitsu",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/KuramitsuLab/myweb-app/puppy2d.git"
},
"bugs": {
"url": "https://github.com/KuramitsuLab/myweb-app/issues"
},
"homepage": "https://github.com/KuramitsuLab/myweb-app",
"devDependencies": {
"@types/jest": "^24.0.20",
"@types/node": "^12.12.47",
"jest": "^24.9.0",
"parcel": "^1.12.4",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
},
"window": {}
},
"testMatch": [
"**/test/*.+(ts|tsx|js)"
]
},
"dependencies": {
"@playpuppy/puppyjs": "^0.1.3",
"matter-js": "^0.14.2"
}
}