-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.58 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.58 KB
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": "pull-postmsg-stream",
"version": "1.2.0",
"description": "Pull streams over window.postMessage",
"main": "src/index.js",
"scripts": {
"lint": "standard",
"test": "run-s lint test:coverage",
"test:coverage": "nyc --reporter=lcov --reporter=text ava",
"example": "run-s example:build example:serve",
"example:build": "run-p example:build:*",
"example:build:index": "browserify example/index.js -o example/index.bundle.js",
"example:build:iframe": "browserify example/iframe.js -o example/iframe.bundle.js",
"example:watch": "run-p example:watch:*",
"example:watch:index": "watchify example/index.js -o example/index.bundle.js -v",
"example:watch:iframe": "watchify example/iframe.js -o example/iframe.bundle.js -v",
"example:serve": "ecstatic ./example --port 3000"
},
"dependencies": {
"postmsg-rpc": "^2.4.0",
"prepost": "^1.1.0"
},
"devDependencies": {
"ava": "^0.25.0",
"browserify": "^16.2.0",
"ecstatic": "^3.1.1",
"npm-run-all": "^4.1.2",
"nyc": "^11.4.1",
"pull-stream": "^3.6.1",
"shortid": "^2.2.8",
"standard": "^11.0.1",
"watchify": "^3.9.0"
},
"keywords": [
"postMessage",
"pull-stream"
],
"author": "Alan Shaw",
"license": "MIT",
"directories": {
"example": "example",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tableflip/pull-postmsg-stream.git"
},
"bugs": {
"url": "https://github.com/tableflip/pull-postmsg-stream/issues"
},
"homepage": "https://github.com/tableflip/pull-postmsg-stream#readme"
}