-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
53
{
"private": true,
"name": "share-via-ipfs",
"version": "0.1.0",
"scripts": {
"test": "standard src",
"start": "parcel src/index.html",
"clean": "rm -rf dist",
"build": "parcel build --public-url ./ src/index.html",
"deploy": "run-s clean build ipfs",
"ipfs": "ipfs add -r -q ./dist | tail -n1 >versions/current; cat versions/current >>versions/history; echo http://ipfs.io/ipfs/`cat versions/current`"
},
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-preact": "^1.1.0",
"npm-run-all": "^4.1.2",
"parcel-bundler": "^1.7.0",
"standard": "^11.0.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"core-js": "^2.5.5",
"filenamify": "^2.0.0",
"filereader-pull-stream": "^1.0.0",
"filereader-stream": "^1.0.0",
"filesize": "^3.6.1",
"history": "^4.7.2",
"ipfs": "^0.28.2",
"linkstate": "^1.1.1",
"preact": "^8.2.7",
"preact-render-to-string": "^3.7.0",
"preact-router": "^2.6.0",
"pretty-hash": "^1.0.1",
"tachyons": "^4.9.1",
"window.ipfs-fallback": "^1.0.0"
},
"description": "> Share files with friends over IPFS",
"main": "index.js",
"directories": {
"doc": "docs"
},
"author": "olizilla",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tableflip/share-via-ipfs.git"
},
"bugs": {
"url": "https://github.com/tableflip/share-via-ipfs/issues"
},
"homepage": "https://github.com/tableflip/share-via-ipfs#readme"
}