-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 891 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
{
"name": "physics-worlds",
"version": "2.3.0",
"description": "A typeScript library for creating 2d physics simulations within self-contained 'Worlds' which can be rendered on HTML canvas elements.",
"private": false,
"scripts": {
"test": "webpack --mode=development --config webpack.test.config.js && node ./tests/built/tests.js",
"build": "webpack --mode=production",
"demo": "webpack --mode=development --config webpack.demo.config.js",
"serve": "npx serve ./"
},
"keywords": [
"physics",
"geometry",
"simulation",
"games"
],
"author": "David Blatcher",
"license": "ISC",
"devDependencies": {
"ts-loader": "^8.0.15",
"typescript": "^4.1.3",
"webpack": "^5.20.2",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"tiny-emitter": "^2.1.0"
},
"main": "dist/physics-worlds.js",
"types": "dist/src/index.d.ts"
}