diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..55b7f83 --- /dev/null +++ b/.npmignore @@ -0,0 +1,7 @@ +node_modules +npm-debug.log +doc +matter-doc-theme +build/matter-dev.js +build/matter-dev.min.js +demo/js/lib/matter-dev.js \ No newline at end of file diff --git a/README.md b/README.md index b59beae..cdacf67 100644 --- a/README.md +++ b/README.md @@ -87,10 +87,14 @@ Download [matter-0.8.0.js](https://github.com/liabru/matter-js/releases/download For the latest features try the [edge version (master)](https://raw.github.com/liabru/matter-js/master/build/matter.js), but it may not be fully stable. -#### Or install using [Bower](http://bower.io/) +#### Install using [Bower](http://bower.io/) bower install matter-js +#### Install using [NPM](https://www.npmjs.org/) + + npm install matter-js + ### Usage See [Demo.js](https://github.com/liabru/matter-js/blob/master/demo/js/Demo.js) and [DemoMobile.js](https://github.com/liabru/matter-js/blob/master/demo/js/DemoMobile.js) for many usage examples. diff --git a/package.json b/package.json index 44c7cd2..6c7addb 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,14 @@ { - "name": "Matter", + "name": "matter-js", "version": "0.8.0", "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-0.8.0.min.js", - "repository":{ - "type" : "git", - "url" : "https://github.com/liabru/matter-js.git" + "repository": { + "type": "git", + "url": "https://github.com/liabru/matter-js.git" }, "keywords": [ "javascript", @@ -32,5 +32,6 @@ "scripts": { "dev": "npm install && grunt dev", "test": "grunt test" - } + }, + "dependencies": {} }