This repository was archived by the owner on Nov 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·44 lines (44 loc) · 1.37 KB
/
package.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.37 KB
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": "2d-physics-engine",
"version": "0.1.3",
"description": "A simple physics engine for 2d applications",
"scripts": {
"prestart": "npm i",
"test": "webpack --config webpack/base.config.js",
"start": "npm run prep.engine",
"update-all": "npm-update-all",
"prep.demo": "npm i && webpack --config webpack/demo.config.js && webpack-dev-server --config webpack/demo.config.js",
"prep.engine": "webpack --config webpack/base.config.js && webpack-dev-server --config webpack/base.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code0wl/2d-physics-engine.git"
},
"author": "Oscar Lodriguez",
"license": "ISC",
"bugs": {
"url": "https://github.com/code0wl/2d-physics-engine/issues"
},
"homepage": "https://github.com/code0wl/2d-physics-engine#readme",
"dependencies": {
"2d-physics-engine-core": "./lib",
"rxjs": "^5.5.12",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"@types/node": "^12.7.5",
"@types/rx": "^4.1.1",
"concurrently": "^4.1.2",
"json-loader": "^0.5.7",
"npm-update-all": "^1.0.1",
"prettier": "^1.18.2",
"ts-loader": "^6.1.1",
"tslint": "^5.20.0",
"tslint-loader": "^3.5.4",
"typescript": "^3.6.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
}
}