planck-js
Version:
2D JavaScript physics engine for cross-platform HTML5 game development
59 lines (58 loc) • 1.52 kB
JSON
{
"name": "planck-js",
"version": "0.3.31",
"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",
"author": "Ali Shakiba (http://shakiba.me/planck.js)",
"contributors": [
"Ali Shakiba (http://shakiba.me/planck.js)",
"Erin Catto (http://box2d.org/)"
],
"dependencies": {
"stage-js": "^0.9.4"
},
"devDependencies": {
"ajv": "^6.10.2",
"chai": "^4.2.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",
"sinon": "^9.0.2",
"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"
}
}