forked from ScriptaGames/pityaboutearth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
26 lines (26 loc) · 887 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "pity-about-earth",
"version": "1.0.0",
"description": "A videogame Ludum Dare 38.",
"main": "index.js",
"scripts": {
"postinstall": "echo \"Play nice!\"",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "browser-sync start --server --serveStatic src/ --files 'src/**/*' --no-inject-changes --directory",
"build": "mkdir -p dist && cp -r src/* dist && babel src/ --out-dir dist --presets=env --ignore lib/*"
},
"author": "TeamScripta <admin@scripta.co>",
"contributors": [
"mwcz <mwc@clayto.com> (http://palebluepixel.org/)",
"Jared Sprague <jared@scripta.co> (http://jaredsprague.com/)",
"Vapor_labVeuskemini 雄 志 <veuskemini@gmail.com>"
],
"license": "GPL-3.0",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-env": "^1.1.6",
"browser-sync": "^2.18.2"
},
"dependencies": {
}
}