Compare commits

...

2 Commits

Author SHA1 Message Date
Starbeamrainbowlabs dac909fd12 Set up rbowserify + rollupify 2016-12-26 15:48:27 +00:00
Starbeamrainbowlabs 2d685b82f7 Ignore build file 2016-12-26 15:42:35 +00:00
2 changed files with 36 additions and 24 deletions

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
# Build products
Starlight.js
# Created by https://www.gitignore.io/api/node # Created by https://www.gitignore.io/api/node

View File

@ -1,26 +1,36 @@
{ {
"name": "scene-starlight", "name": "scene-starlight",
"version": "0.0.1", "version": "0.0.1",
"description": "A cool starry night scene. Made for Christmas (actually new year) 2016.", "description": "A cool starry night scene. Made for Christmas (actually new year) 2016.",
"main": "Starlight-Renderer.js", "main": "Starlight-Renderer.js",
"scripts": { "scripts": {
"test": "echo (There aren't any tests yet!)" "env": "env",
}, "test": "echo (There aren't any tests yet!)",
"repository": { "build": "browserify $npm_package_main -t rollupify -o Starlight.js",
"type": "git",
"url": "https://git.starbeamrainbowlabs.com/sbrl/Scene-Starlight" "postinstall": "npm run build",
}, "prestart": "npm run build"
"keywords": [ },
"html5", "repository": {
"canvas", "type": "git",
"es6", "url": "https://git.starbeamrainbowlabs.com/sbrl/Scene-Starlight"
"browserify", },
"christmas", "keywords": [
"2016" "html5",
], "canvas",
"author": "Starbeamrainbowlabs", "es6",
"license": "MPL-2.0", "browserify",
"devDependencies": { "christmas",
"rollupify": "^0.3.7" "2016"
} ],
"author": "Starbeamrainbowlabs <feedback@starbeamrainbowlabs.com>",
"private": true,
"license": "MPL-2.0",
"devDependencies": {
"rollupify": "^0.3.7"
},
"browserify": {
"transform": ["rollupify"]
}
} }