{ "name": "matter-js", "version": "0.17.1", "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": { "conventional-changelog-cli": "^2.1.1", "eslint": "^6.8.0", "html-webpack-plugin": "^4.5.1", "jest": "^25.1.0", "jest-worker": "^24.9.0", "json-stringify-pretty-compact": "^2.0.0", "matter-tools": "^0.14.0", "matter-wrap": "^0.2.0", "mock-require": "^3.0.3", "pathseg": "^1.2.0", "poly-decomp": "^0.3.0", "puppeteer-core": "^5.5.0", "terser-webpack-plugin": "^4.2.3", "webpack": "^4.46.0", "webpack-bundle-analyzer": "^4.4.0", "webpack-cli": "^3.3.11", "webpack-dev-server": "^3.11.1" }, "scripts": { "start": "npm run dev", "dev": "npm run serve -- --open", "serve": "webpack-dev-server --no-cache --mode development --config webpack.demo.config.js", "watch": "nodemon --watch webpack.demo.config.js --exec \"npm run serve\"", "build": "webpack --mode=production --no-hot --no-watch & webpack --mode=production --no-hot --no-watch --env.MINIMIZE", "build-alpha": "webpack --mode=production --env.ALPHA & webpack --mode=production --env.MINIMIZE --env.ALPHA", "build-demo": "rm -rf ./demo/js && webpack --no-hot --no-watch --config webpack.demo.config.js --mode=production && webpack --no-hot --no-watch --config webpack.demo.config.js --mode=production --env.MINIMIZE", "lint": "eslint 'src/**/*.js' 'demo/src/**/*.js' 'examples/*.js' 'webpack.*.js'", "doc": "yuidoc --config yuidoc.json --project-version $npm_package_version", "doc-watch": "nodemon --delay 3 --watch 'matter-doc-theme' --watch src -e 'js,html,css,handlebars' --exec 'npm run doc'", "test": "npm run test-node", "test-all": "jest --no-cache", "test-save": "SAVE=true npm run test-node", "test-watch": "npm run test-node -- --watch", "test-node": "jest --no-cache ./test/Examples.spec.js", "test-browser": "jest --no-cache ./test/Browser.spec.js", "changelog": "conventional-changelog -i CHANGELOG.md -s -r", "release": "npm version --no-git-tag-version", "preversion": "git checkout master && npm run lint && SAVE=true npm run test-all", "version": "git checkout -b release/$npm_package_version && npm run build" }, "files": [ "src", "build", "CHANGELOG.md" ] }