forked from perguth/peertransfer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.64 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
{
"name": "peertransfer",
"version": "2.1.2",
"description": "In-browser P2P-filetransfer in three simple steps: 1) Drop files into your browser. 2) Open the generated link on the second PC. 3) Download the files over a direct and encrypted line.",
"homepage": "https://github.com/perguth/peertransfer",
"keywords": [
"WebRTC",
"p2p",
"filesharing"
],
"main": "index.js",
"browser": "browser.js",
"scripts": {
"test": "standard && tape test.js",
"start": "per-env",
"start:development": "npm run dev",
"start:production": "npm run prod",
"build": "export NODE_ENV=production; mkdir -p build && browserify browser.js -o build/bundle.js -t [envify purge] -t babelify --presets [es2015] && cp -r index.html style.css assets build/",
"dev": "signalhub listen -p 7000 & budo --live --host localhost index.js:bundle.js -- -t envify",
"prod": "budo index.js:bundle.js"
},
"dependencies": {
"budo": "^11.8.4",
"clipboard": "^2.0.11",
"crypto-js": "^4.1.1",
"feature": "^1.1.0",
"jquery": "^3.6.3",
"namedfilestream": "^1.1.0",
"per-env": "^1.0.2",
"signalhub": "^4.9.0",
"webrtc-swarm": "^2.9.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"envify": "^4.1.0",
"standard": "^17.0.0",
"tape": "^5.6.3"
},
"overrides": {
"simple-peer": "^9.11.1"
},
"repository": {
"type": "git",
"url": "https://github.com/perguth/peertransfer.git"
},
"author": "Per Guth <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/perguth/peertransfer/issues"
}
}