-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 1.05 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
{
"name": "hello-world-browserify",
"version": "1.0.0",
"description": "A blank Koji template with browserify bundler",
"main": "index.js",
"scripts": {
"prestart": "koji-vcc watch &",
"start": "npx budo index.js --live -- -t [ babelify --presets [ @babel/preset-env ] ] -g browserify-css",
"build:html": "cat index.html | sed 's/index.js/bundle.js/' > dist/index.html",
"build:js": "npx browserify index.js -t [ babelify --presets [ @babel/preset-env ] ] -g browserify-css -o dist/bundle.js",
"build": "rm -rf build/*; npm run build:html; npm run build:js",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/madewithkoji/hello-world-browserify.git"
},
"keywords": [
"Koji",
"Hello World",
"Browserify"
],
"author": "gron",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.5.5",
"@withkoji/vcc": "^1.0.8",
"babelify": "^10.0.0",
"browserify": "^16.3.0",
"browserify-css": "^0.15.0",
"budo": "^11.6.2"
}
}