-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.14 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
{
"name": "postmsg-rpc",
"version": "2.4.0",
"description": "Tiny RPC over window.postMessage library",
"main": "lib/index.js",
"scripts": {
"build": "run-p build:*",
"build:js": "babel src --out-dir lib --source-maps",
"test": "run-s lint test:*",
"test:ava": "nyc --reporter=lcov --reporter=text ava",
"lint": "standard",
"clean": "rm -rf lib/**",
"prepublishOnly": "run-s build"
},
"keywords": [
"postMessage",
"window",
"window.postMessage",
"rpc",
"api"
],
"author": "Alan Shaw",
"license": "MIT",
"dependencies": {
"shortid": "^2.2.8"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"npm-run-all": "^4.1.2",
"nyc": "^11.3.0",
"standard": "^11.0.1"
},
"ava": {
"require": [
"babel-register",
"babel-polyfill"
],
"babel": "inherit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tableflip/postmsg-rpc.git"
},
"bugs": {
"url": "https://github.com/tableflip/postmsg-rpc/issues"
},
"homepage": "https://github.com/tableflip/postmsg-rpc#readme"
}