-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.44 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
44
45
46
47
48
49
{
"name": "zeronet-web-bundle",
"version": "0.0.1",
"description": "ZeroNetJS for web-browsers",
"main": "page.js",
"browser": {},
"scripts": {
"build": "browserify . -d -o bundle.main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "watchify . -d -v -o bundle.main.js",
"start": "sed 's|bundle.min.js|bundle.main.js|g' index.html -i && http-server -p 3000 .",
"dist": "sed 's|bundle.main.js|bundle.min.js|g' index.html -i && browserify . -d | babel -s inline -f bundle.min.js --presets es2015 | uglifyjs --source-map content=inline,url=bundle.min.js.map --compress -o bundle.min.js"
},
"keywords": [
"zeronet",
"browser"
],
"author": "Maciej Krüger <mkg20001@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ZeroNetJS/web-bundle.git"
},
"bugs": {
"url": "https://github.com/ZeroNetJS/web-bundle/issues"
},
"browserify": {
"transform": [
"aliasify"
]
},
"aliasify": {
"aliases": {}
},
"homepage": "https://github.com/ZeroNetJS/web-bundle#readme",
"dependencies": {
"aliasify": "^2.1.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"browserify": "^16.1.0",
"http-server": "^0.11.1",
"jquery": "^3.3.1",
"libp2p-websockets": "^0.10.5",
"moment": "^2.20.1",
"uglify-js": "^3.3.12",
"watchify": "^3.10.0",
"zeronet": "github:ZeroNetJS/zeronet-js"
}
}