-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.72 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@realeyes/postmessage-api-shim",
"version": "1.1.7",
"description": "Promise-based postMessage API shim",
"main": "index.js",
"scripts": {
"test": "npm run build && karma start test/karma.conf.js --single-run",
"build": "browserify build.js -d > dist/index.js"
},
"browserify": {
"transform": [
[
"babelify", { "presets": ["@babel/preset-env"] }
]
]
},
"keywords": [
"postmessage",
"api",
"shim"
],
"author": "David Klassen <david.klassen@realeyesit.com>",
"contributors": [
"Laszlo Vass <laszlo.vass@realeyesit.com>",
"Anton Chueshkov <anton.chueshkov@realeyesit.com>",
"Vladimir Poleh <vladimir.poleh@realeyesit.com>"
],
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"karma": "^4.0.1",
"karma-bamboo-reporter": "^0.1.2",
"karma-browserify": "^6.0.0",
"karma-browserstack-launcher": "^1.5.1",
"karma-chrome-launcher": "^2.2.0",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.1.0",
"karma-junit-reporter": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-spec-reporter": "0.0.32",
"mocha": "^6.1.3",
"node-static": "^0.7.11",
"npm-build-tools": "^2.2.5",
"sinon": "^7.3.1",
"sinon-chai": "^3.3.0",
"watchify": "^3.11.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Realeyes/postmessage-api-shim.git"
},
"bugs": {
"url": "https://github.com/Realeyes/postmessage-api-shim/issues"
},
"homepage": "https://github.com/Realeyes/postmessage-api-shim#readme",
"dependencies": {
"events": "^3.0.0"
}
}