-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "cobuy.nz",
"version": "0.0.0",
"description": "Cobuy landing page",
"main": "index.js",
"scripts": {
"start": "budo src:bundle.js -d src --live -- -d",
"bundle": "browserify src -g envify -g uglifyify",
"build": "npm run --silent bundle -- -o src/bundle.js",
"disc": "npm run --silent bundle -- --full-paths | discify --open",
"push": "gh-pages -d src",
"deploy": "npm-run-all -s build push"
},
"browserify": {
"transform": []
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahdinosaur/cobuy.nz.git"
},
"keywords": [],
"author": "Mikey <[email protected]> (http://dinosaur.is)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ahdinosaur/cobuy.nz/issues"
},
"homepage": "https://github.com/ahdinosaur/cobuy.nz#readme",
"devDependencies": {
"browserify": "^13.0.0",
"budo": "^8.1.0",
"disc": "^1.3.2",
"envify": "^3.4.0",
"gh-pages": "^0.11.0",
"npm-run-all": "^1.6.0",
"uglifyify": "^3.0.1",
"watchify": "^3.7.0"
},
"dependencies": {
}
}