-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.5 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
50
51
52
{
"name": "ipfs-peer-map-example",
"version": "1.0.4",
"description": "A map of IPv4 IPFS peers that uses window.ipfs",
"main": "dist/index.html",
"scripts": {
"start": "ecstatic dist",
"clean": "shx rm -rf dist",
"build": "run-s build:*",
"build:copy": "run-p build:copy:*",
"build:copy:html": "shx mkdir -p dist && shx cp src/index.html dist/index.html",
"build:copy:images": "shx mkdir -p dist/images && shx cp src/images/* dist/images",
"build:js": "browserify -t envify -g uglifyify src/main.js -o dist/bundle.js",
"watch": "npm-run-all build:copy --parallel watch:*",
"watch:js": "watchify -t envify src/main.js -o dist/bundle.js -v",
"watch:serve": "ecstatic --cache=0 dist",
"test": "standard"
},
"author": "Alan Shaw",
"license": "MIT",
"devDependencies": {
"browserify": "^16.1.0",
"ecstatic": "^3.2.0",
"envify": "^4.1.0",
"npm-run-all": "^4.1.2",
"shx": "^0.3.2",
"standard": "^11.0.0",
"uglifyify": "^5.0.1",
"watchify": "^3.11.0"
},
"dependencies": {
"ipfs-geoip": "^2.3.0",
"mapbox-gl": "^0.47.0",
"queue": "^4.4.2",
"window.ipfs-fallback": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tableflip/ipfs-peer-map-example.git"
},
"keywords": [
"ipfs",
"peer",
"p2p",
"map",
"webgl"
],
"bugs": {
"url": "https://github.com/tableflip/ipfs-peer-map-example/issues"
},
"homepage": "https://github.com/tableflip/ipfs-peer-map-example#readme"
}