{ "name": "matter-js", "version": "0.14.2", "license": "MIT", "homepage": "http://brm.io/matter-js/", "author": "Liam Brummitt (http://brm.io/)", "description": "a 2D rigid body physics engine for the web", "main": "build/matter.js", "repository": { "type": "git", "url": "https://github.com/liabru/matter-js.git" }, "keywords": [ "javascript", "canvas", "html5", "physics", "physics engine", "game engine", "rigid body physics" ], "devDependencies": { "eslint": "^6.8.0", "gulp": "^4.0.2", "gulp-bump": "^2.6.1", "gulp-conventional-changelog": "^2.0.35", "gulp-tag-version": "^1.3.0", "gulp-util": "^3.0.8", "jest": "^25.1.0", "jest-worker": "^24.9.0", "json-stringify-pretty-compact": "^2.0.0", "run-sequence": "^2.2.1", "webpack": "^4.44.2", "puppeteer-core": "^5.5.0", "webpack-cli": "^3.3.11", "webpack-dev-server": "^3.11.0" }, "scripts": { "dev": "webpack-dev-server --watch-content-base", "build": "webpack --mode=production & webpack --mode=production --env.MINIMIZE", "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'", "doc": "gulp doc", "test": "npm run test-node", "test-all": "jest", "test-save": "SAVE=true npm run test-node", "test-watch": "npm run test-node -- --watch", "test-node": "jest ./test/Examples.spec.js", "test-browser": "jest ./test/Browser.spec.js" }, "dependencies": {}, "files": [ "src", "build", "CHANGELOG.md" ] }