-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 963 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "pocket-physics",
"packageManager": "[email protected]",
"version": "11.0.0",
"description": "Verlet physics extracted from pocket-ces demos",
"main": "cjs/index.js",
"module": "esm/index.js",
"workspaces": [
"./examples"
],
"files": [
"esm/",
"cjs",
"src/"
],
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc --build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/kirbysayshi/pocket-physics"
},
"keywords": [
"verlet",
"physics",
"pocket-ces",
"game"
],
"author": "Drew Petersen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kirbysayshi/pocket-physics/issues"
},
"homepage": "https://github.com/kirbysayshi/pocket-physics",
"devDependencies": {
"@types/jest": "^27.0.1",
"jest": "^27.2.0",
"prettier": "^2.4.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
}
}