-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
46 lines (46 loc) · 995 Bytes
/
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
{
"name": "tab-emitter",
"version": "1.0.11",
"main": "./index.js",
"author": {
"name": "ArtskydJ",
"email": "[email protected]"
},
"description": "An event emitter for same-origin tab communication",
"keywords": [
"crosstab",
"cross tab",
"bazaar",
"intercom",
"broadcast",
"ipc",
"iwc",
"rpc",
"xpc",
"pubsub",
"publish",
"subscribe",
"hub",
"messages",
"window",
"emitter",
"browser",
"browserify",
"communicate",
"communication"
],
"repository": {
"type": "git",
"url": "https://github.com/ArtskydJ/tab-emitter.git"
},
"scripts": {
"build": "browserify test/relay.js -o test/relay-bundle.js && browserify test/test.js -o test/test-bundle.js",
"test": "npm run build && cat test/test.html | tape-run --static test --input html"
},
"dependencies": {},
"devDependencies": {
"browserify": "^14.3.0",
"tape": "^4.2.2",
"tape-run": "^3.0.0"
}
}