forked from protozoa-nz/protozoa-nz.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1013 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
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "protozoa-nz",
"version": "1.0.0",
"description": "it's a real sweet app",
"main": "index.js",
"scripts": {
"start": "budo . -d --serve bundle.js --live",
"build": "browserify . -o bundle.js -g uglifyify",
"test": "browserify test/index.js | node | tap-spec",
"deploy": "npm run build"
},
"browserify": {
"transform": [
"browserify-markdown",
"babelify"
]
},
"repository": {
"type": "git",
"url": "https://github.com/protozoa-nz/protozoa-nz.github.io"
},
"author": "pietgeursen",
"license": "MIT",
"bugs": {
"url": "https://github.com/protozoa-nz/protozoa-nz.github.io/issues"
},
"homepage": "https://github.com/protozoa-nz/protozoa-nz.github.io",
"dependencies": {},
"devDependencies": {
"babel-preset-es2015": "^6.24.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"browserify-markdown": "^2.0.1",
"budo": "^8.2.0",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"uglifyify": "^3.0.1"
}
}