-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 874 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
{
"name": "msgr",
"version": "2.0.0",
"description": "Nifty worker/client postMessage utility",
"main": "index.js",
"scripts": {
"lint": "standard index.js",
"test": "node test.js",
"prepublish": "npm run -s lint && npm run -s test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sdgluck/msgr.git"
},
"author": "Sam Gluck <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sdgluck/msgr/issues"
},
"homepage": "https://github.com/sdgluck/msgr#readme",
"keywords": [
"message",
"postMessage",
"post",
"service",
"worker",
"sw",
"client",
"communication",
"comms"
],
"dependencies": {
"mini-defer": "0.0.5",
"shortid": "^2.2.6"
},
"devDependencies": {
"sinon": "^1.17.4",
"standard": "^7.1.2",
"tape": "^4.5.1"
}
}