-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
37 lines (37 loc) · 944 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
{
"name": "windtalk",
"version": "1.1.1",
"description": "Simplest way to communicate between windows/iframes.",
"main": "dist/windtalk.umd.js",
"browser": "dist/windtalk.js",
"module": "dist/windtalk.m.js",
"source": "index.js",
"types": "dist/windtalk.d.ts",
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pshihn/windtalk.git"
},
"keywords": [
"window",
"iframe",
"rpc",
"proxy",
"window messaging"
],
"author": "Preet Shihn <preetshihn@gmail.com> (https://twitter.com/preetster)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pshihn/windtalk/issues"
},
"homepage": "https://github.com/pshihn/windtalk#readme",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.0",
"rollup": "^1.19.4",
"rollup-plugin-terser": "^4.0.4"
}
}