-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.65 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": "@ekolabs/iframily",
"version": "1.0.3",
"description": "postMessage made simple & safe",
"main": "dist/iframily.min.js",
"license": "Apache-2.0",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch",
"playground": "http-server ./ -c-1 -p 8135 -o /playground/parent.html",
"examples": "http-server ./ -c-1 -p 8136 -o /examples",
"test": "jest",
"test-debug-mac": "node --inspect-brk node_modules/.bin/jest --runInBand --testTimeout=9999999 --watchAll",
"test-debug-win": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --testTimeout=9999999 --watchAll"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.0.0",
"eslint-loader": "^4.0.2",
"http-server": "^0.12.3",
"jest": "^26.0.1",
"jest-puppeteer": "^4.4.0",
"lodash": "^4.17.15",
"minimist": "^1.2.0",
"puppeteer": "^3.0.4",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"files": [
"dist/",
"package.json",
"README.md",
"LICENSE.md"
],
"repository": {
"type": "git",
"url": "https://github.com/EkoLabs/iframily.git"
},
"keywords": [
"iframe",
"iframes",
"communication",
"messaging",
"postMessage"
],
"author": {
"name": "Eko labs",
"url": "https://developer.eko.com",
"email": "[email protected]"
},
"contributors": [
{
"name": "Asaf Menahem"
}
]
}