-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "verlyjs",
"version": "1.1.3",
"type": "module",
"description": "Easy to integrate verlet physics engine",
"main": "server.js",
"directories": {
"example": "examples"
},
"scripts": {
"build": "esbuild --minify --bundle --outfile=dist/verly.bundle.js --sourcemap=external src/app.js",
"watch": "esbuild --watch --minify --bundle --outfile=dist/verly.bundle.js --sourcemap=external src/app.js",
"jsdoc": "jsdoc -c jsdoc.conf.json",
"test": "mocha test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anuraghazra/Verly.js.git"
},
"keywords": [
"verlet",
"physics",
"engine"
],
"author": "Anurag Hazra",
"license": "MIT",
"bugs": {
"url": "https://github.com/anuraghazra/Verly.js/issues"
},
"homepage": "https://github.com/anuraghazra/Verly.js#readme",
"dependencies": {
"uuid": "^9.0.1"
},
"devDependencies": {
"better-docs": "^1.1.6",
"chai": "^5.0.3",
"esbuild": "^0.20.0",
"jsdoc": "^3.6.2",
"mocha": "^10.3.0"
}
}