forked from piqnt/planck.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.63 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
58
59
60
61
62
63
64
65
66
{
"name": "planck-js",
"version": "0.3.26",
"description": "2D JavaScript physics engine for cross-platform HTML5 game development",
"homepage": "http://shakiba.me/planck.js",
"keywords": [
"box2d",
"html5",
"javascript",
"game",
"physics",
"engine",
"2d",
"mobile"
],
"license": "zlib",
"repository": {
"type": "git",
"url": "git://github.com/shakiba/planck.js.git"
},
"main": "lib/index.js",
"types": "index.d.ts",
"files": [
"dist/",
"doc/",
"lib/",
"test/",
"testbed/"
],
"author": "Ali Shakiba (http://shakiba.me/planck.js)",
"contributors": [
"Ali Shakiba (http://shakiba.me/planck.js)",
"Erin Catto (http://box2d.org/)"
],
"devDependencies": {
"ajv": "^6.10.2",
"chai": "^4.2.0",
"closure-webpack-plugin": "^2.3.0",
"dtslint": "^3.6.9",
"express": "^4.17.1",
"handlebars": "^4.7.6",
"mocha": "^6.2.3",
"nodemon": "^1.19.1",
"nyc": "^15.1.0",
"serve-index": "^1.9.1",
"sinon": "^9.0.2",
"stage-js": "^0.8.11",
"tslint": "^5.17.0",
"typedoc": "^0.17.8",
"typedoc-plugin-markdown": "^2.3.1",
"typescript": "^4.0.0-beta",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.3",
"webpack-dev-middleware": "^3.7.0"
},
"scripts": {
"test": "mocha 'lib/**/__test/*.js'",
"test:coverage": "nyc --reporter=text mocha 'lib/**/__test/*.js'",
"test:coverage:html": "nyc --reporter=html mocha 'lib/**/__test/*.js'",
"build": "webpack -p",
"watch": "webpack --watch",
"testbed": "nodemon testbed/server.js",
"typedoc": "typedoc --options typedoc.json"
},
"dependencies": {}
}