-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 817 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 817 Bytes
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
{
"name": "iframe_bridge",
"version": "1.1.0",
"description": "Very basic wrapper around window.postMessage",
"main": "dist/iframe_bridge.js",
"scripts": {
"test": "mocha --recursive ./spec",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/panta82/iframe_bridge.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/panta82/iframe_bridge/issues"
},
"homepage": "https://github.com/panta82/iframe_bridge#readme",
"dependencies": {
"eventemitter3": "^2.0.3",
"inherits": "^2.0.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.2",
"chai-spies": "^0.7.1",
"mocha": "^3.5.3",
"webpack": "^3.6.0"
}
}