This repository has been archived by the owner on Apr 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
90 lines (90 loc) · 3.11 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "ipfs-postmsg-proxy",
"version": "3.1.2",
"description": "Proxy to an IPFS over window.postMessage",
"main": "lib/index.js",
"scripts": {
"build": "run-p build:*",
"build:js": "babel src --out-dir lib --source-maps",
"watch": "run-p watch:*",
"watch:js": "babel src --watch --out-dir lib --source-maps",
"test": "run-s build lint test:*",
"test:functional": "mocha 'test/functional/**/*.test.js'",
"test:integration": "run-s test:integration:*",
"test:integration:node": "run-s test:integration:node:*",
"test:integration:node:go": "mocha test/integration/node+go.js --timeout 10000",
"test:integration:node:js": "nyc --reporter=lcov --reporter=text mocha test/integration/node+js.js --timeout 10000",
"test:integration:browser": "run-s test:integration:browser:build test:integration:browser:run",
"test:integration:browser:build": "browserify test/integration/fixtures/public/iframe/index.js -o test/integration/fixtures/public/iframe/bundle.js",
"test:integration:browser:run": "karma start --browsers Chrome --single-run",
"test:integration:browser:watch": "npm-run-all test:integration:browser:build --parallel test:browser:integration:watch:*",
"test:integration:browser:watch:build": "watchify test/integration/fixtures/public/iframe/index.js -o test/integration/fixtures/public/iframe/bundle.js -v",
"test:integration:browser:watch:run": "karma start --browsers Chrome",
"lint": "standard",
"clean": "rm -rf lib/**",
"prepublishOnly": "run-s build"
},
"author": "Alan Shaw",
"license": "MIT",
"dependencies": {
"big.js": "^5.1.2",
"callbackify": "^1.1.0",
"cids": "^0.5.3",
"ipfs-block": "^0.7.1",
"ipld-dag-pb": "^0.14.4",
"is-pull-stream": "0.0.0",
"is-stream": "^1.1.0",
"multiaddr": "^5.0.0",
"peer-id": "^0.11.0",
"peer-info": "^0.14.1",
"postmsg-rpc": "^2.4.0",
"prepost": "^1.1.0",
"pull-abortable": "^4.1.1",
"pull-defer": "^0.2.2",
"pull-postmsg-stream": "^1.2.0",
"pull-stream": "^3.6.8",
"pull-stream-to-stream": "^1.3.4",
"shortid": "^2.2.8",
"stream-to-pull-stream": "^1.7.2"
},
"devDependencies": {
"async": "^2.6.1",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"browserify": "^16.2.2",
"go-ipfs-dep": "^0.4.15",
"hat": "0.0.3",
"interface-ipfs-core": "^0.77.1",
"ipfs": "^0.32.0",
"ipfsd-ctl": "^0.39.2",
"karma": "^3.0.0",
"karma-browserify": "^5.1.2",
"karma-mocha": "^1.3.0",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"nyc": "^13.0.1",
"realistic-structured-clone": "^2.0.2",
"rimraf": "^2.6.2",
"standard": "^12.0.1",
"watchify": "^3.11.0"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs-shipyard/ipfs-postmsg-proxy.git"
},
"keywords": [
"IPFS",
"postMessage",
"window.postMessage",
"proxy",
"rpc"
],
"bugs": {
"url": "https://github.com/ipfs-shipyard/ipfs-postmsg-proxy/issues"
},
"homepage": "https://github.com/ipfs-shipyard/ipfs-postmsg-proxy#readme"
}