-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.48 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
{
"name": "concesionopoly",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "mkdir -p ./build",
"build:js": "./node_modules/browserify/bin/cmd.js -e ./app/js/concesionopoly.js -t babelify -o ./build/concesionopoly.js",
"build:css": "./node_modules/pleeease-cli/bin/pleeease compile",
"build:html": "./node_modules/jade/bin/jade.js $(find './app' -iname '*.jade') --out ./build --pretty",
"build:img": "cp -rf ./app/img ./build/img",
"watch:js": "./node_modules/watch/cli.js 'npm run build:js' ./app/js",
"watch:css": "./node_modules/pleeease-cli/bin/pleeease watch",
"watch:html": "npm run build:html -- -w",
"build": "npm run build:js && npm run build:css && npm run build:html && npm run build:img",
"watch": "npm run watch:js & npm run watch:css & npm run watch:html",
"clean": "rm -rf ./build/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DemocraciaEnRed/concesionopoly.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DemocraciaEnRed/concesionopoly/issues"
},
"homepage": "https://github.com/DemocraciaEnRed/concesionopoly#readme",
"devDependencies": {
"babelify": "^6.1.2",
"browserify": "^10.2.4",
"deepmerge": "^0.2.10",
"dom-delegate": "^2.0.3",
"emitter": "mango/emitter",
"fly-template": "^0.1.3",
"jade": "^1.11.0",
"object-merge": "^2.5.1",
"pleeease-cli": "^3.2.8",
"watch": "^0.16.0"
}
}