mirror of
https://github.com/photonstorm/phaser
synced 2024-11-10 23:24:41 +00:00
Merge pull request #1132 from englercj/feature-npm-publish
Prepare package for npm publish
This commit is contained in:
commit
5f675a0902
3 changed files with 12 additions and 4 deletions
5
.npmignore
Normal file
5
.npmignore
Normal file
|
@ -0,0 +1,5 @@
|
|||
**/.*
|
||||
bower_components/
|
||||
resources/
|
||||
examples/
|
||||
plugins/
|
|
@ -1,5 +1,6 @@
|
|||
language: node_js
|
||||
node_js:
|
||||
- "0.10"
|
||||
before_script:
|
||||
install:
|
||||
- npm install -g grunt-cli
|
||||
- npm install
|
||||
|
|
|
@ -1,20 +1,22 @@
|
|||
{
|
||||
"name": "Phaser",
|
||||
"name": "phaser",
|
||||
"version": "2.1.0",
|
||||
"release": "Cairhien",
|
||||
"description": "A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.",
|
||||
"author": "Richard Davey",
|
||||
"author": "Richard Davey <rdavey@gmail.com>",
|
||||
"logo": "https://raw.github.com/photonstorm/phaser/master/phaser-logo-small.png",
|
||||
"homepage": "http://phaser.io",
|
||||
"bugs": "https://github.com/photonstorm/phaser/issues",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
|
||||
"main": "./build/phaser.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://photonstorm@github.com/photonstorm/phaser.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "NODE_ENV=test grunt jshint"
|
||||
"test": "NODE_ENV=test grunt jshint",
|
||||
"prepublish": "grunt build"
|
||||
},
|
||||
"keywords": [
|
||||
"HTML5",
|
||||
|
|
Loading…
Reference in a new issue