-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 847 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
{
"name": "window-bus",
"version": "1.1.4",
"description": "An ultra light library to facilitate communication between iframes regardless of origin",
"main": "index.js",
"files": [
"index.d.ts",
"index.ts",
"index.js"
],
"scripts": {
"test": "webpack && npx http-server test -o & webpack --watch",
"build": "tsc --build",
"clean": "tsc --build --clean",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"window",
"iframe",
"cors",
"message"
],
"repository": "https://github.com/Tofandel/window-bus.git",
"author": "Adrien Foulon",
"license": "GPL-3.0-or-later",
"dependencies": {
"tiny-emitter": "^2.1.0"
},
"devDependencies": {
"http-server": "^0.12.3",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack-cli": "^4.7.2"
}
}