forked from pixelastic/pokemonorbigdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.62 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "truthy_or_falsy",
"version": "0.0.1",
"description": "Is this truthy or falsy ?",
"author": "hoshinotsuyoshi",
"private": true,
"repository": {
"type": "git",
"url": "ssh://[email protected]:hoshinotsuyoshi/truthy_or_falsy.git"
},
"bugs": {
"url": "https://github.com/hoshinotsuyoshi/truthy_or_falsy/issues"
},
"engines": {
"node": "0.10.21",
"npm": "1.3.11"
},
"scripts": {
"build:html": "rsync app/*.html dist/",
"watch:html": "onchange 'app/*.html' -- npm run build:html",
"build:css": "rsync app/css/*.css dist/css/",
"watch:css": "onchange 'app/css/*.css' -- npm run build:css",
"build:js": "rsync app/js/*.js dist/js/",
"watch:js": "onchange 'app/js/*.js' -- npm run build:js",
"build:jsx": "jsx --extension jsx app/js/ dist/js/",
"watch:jsx": "jsx --extension jsx --watch app/js/ dist/js/",
"build:json": "rsync app/*.json dist/",
"watch:json": "onchange 'app/*.json' -- npm run build:json",
"build:img": "rsync app/img/* dist/img/",
"watch:img": "onchange 'app/img/*' -- npm run build:img",
"build": "npm run build:html && npm run build:css && npm run build:js && npm run build:jsx && npm run build:json && npm run build:img",
"build:watch": "parallelshell 'npm run watch:html' 'npm run watch:css' 'npm run watch:js' 'npm run watch:jsx' 'npm run watch:json' 'npm run watch:img'",
"preserve": "npm run build",
"serve": "npm run build:watch & live-server --port=9200 dist/"
},
"devDependencies": {
"live-server": "0.7.0",
"react-tools": "0.13.0",
"parallelshell": "1.1.1",
"onchange": "1.0.0"
},
"dependencies": {}
}