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

60 lines
2.2 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-11-25 18:17:10 -05:00
"conventional-changelog-cli": "^2.1.1",
2020-03-10 14:12:29 -04:00
"eslint": "^6.8.0",
"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 19:09:11 -05:00
"puppeteer-core": "^5.5.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 & webpack --config webpack.examples.config.js --mode=production --env.MINIMIZE",
"build-examples-alpha": "webpack --config webpack.examples.config.js --mode=production --env.ALPHA & webpack --config webpack.examples.config.js --mode=production --env.MINIMIZE --env.ALPHA",
2020-11-24 19:09:11 -05:00
"lint": "eslint 'src/**/*.js' 'demo/js/Demo.js' 'demo/js/Compare.js' 'examples/*.js' 'webpack.*.js'",
2020-11-25 18:17:10 -05:00
"doc": "yuidoc --config yuidoc.json --project-version $npm_package_version",
2020-11-24 18:26:20 -05:00
"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",
2020-11-25 18:17:10 -05:00
"test-browser": "jest ./test/Browser.spec.js",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r",
"release": "npm version --no-git-tag-version",
"preversion": "git checkout -b master && npm run lint && SAVE=true npm run test-all",
"version": "git checkout -b release/$npm_package_version && npm run build"
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
}