0
0
Fork 0
mirror of https://github.com/liabru/matter-js.git synced 2024-11-23 09:26:51 -05:00
liabru-matter-js/package.json

55 lines
1.7 KiB
JSON
Raw Normal View History

2014-02-19 09:15:05 -05:00
{
2014-06-13 05:09:44 -04:00
"name": "matter-js",
2018-06-11 18:15:03 -04:00
"version": "0.14.2",
2014-02-19 09:15:05 -05:00
"license": "MIT",
"homepage": "http://brm.io/matter-js/",
"author": "Liam Brummitt <liam@brm.io> (http://brm.io/)",
2014-02-20 13:00:38 -05:00
"description": "a 2D rigid body physics engine for the web",
2016-11-03 20:34:11 -04:00
"main": "build/matter.js",
2014-06-13 05:09:44 -04:00
"repository": {
"type": "git",
"url": "https://github.com/liabru/matter-js.git"
2014-02-27 17:50:56 -05:00
},
2014-02-20 13:00:38 -05:00
"keywords": [
"javascript",
"canvas",
"html5",
"physics",
"physics engine",
"game engine",
"rigid body physics"
],
2014-02-19 09:15:05 -05:00
"devDependencies": {
2020-03-10 14:12:29 -04:00
"eslint": "^6.8.0",
2019-09-14 13:49:24 -04:00
"gulp": "^4.0.2",
2017-02-01 19:16:50 -05:00
"gulp-bump": "^2.6.1",
2020-11-24 17:56:45 -05:00
"gulp-conventional-changelog": "^2.0.35",
"gulp-tag-version": "^1.3.0",
2017-02-01 19:16:50 -05:00
"gulp-util": "^3.0.8",
2020-03-10 14:12:29 -04:00
"jest": "^25.1.0",
"jest-worker": "^24.9.0",
2019-09-30 18:28:17 -04:00
"json-stringify-pretty-compact": "^2.0.0",
2020-11-24 17:56:45 -05:00
"run-sequence": "^2.2.1",
"webpack": "^4.44.2",
2020-03-10 14:12:29 -04:00
"webpack-cli": "^3.3.11",
2020-11-24 17:56:45 -05:00
"webpack-dev-server": "^3.11.0"
2014-02-19 09:15:05 -05:00
},
"scripts": {
2019-09-28 09:51:27 -04:00
"dev": "webpack-dev-server --watch-content-base",
2019-09-14 13:36:22 -04:00
"build": "webpack --mode=production & webpack --mode=production --env.MINIMIZE",
2020-03-09 18:07:34 -04:00
"build-alpha": "webpack --mode=production --env.ALPHA & webpack --mode=production --env.MINIMIZE --env.ALPHA",
"build-examples": "webpack --config webpack.examples.config.js --mode=production --env.ALPHA & webpack --config webpack.examples.config.js --mode=production --env.MINIMIZE --env.ALPHA",
"lint": "eslint 'src/**/*.js' 'demo/js/Demo.js' 'demo/js/Compare.js' 'examples/*.js' 'webpack.*.js' 'Gulpfile.js'",
2019-09-14 13:49:24 -04:00
"doc": "gulp doc",
2019-09-14 14:31:31 -04:00
"test": "jest",
"test-save": "SAVE=true jest",
"test-watch": "jest --watch"
2014-06-13 05:09:44 -04:00
},
2016-04-26 17:59:41 -04:00
"dependencies": {},
"files": [
"src",
"build",
"CHANGELOG.md"
]
2014-02-19 09:15:05 -05:00
}