-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.79 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
{
"name": "mini-iframe-rpc",
"description": "RPC across iframes using postMessage API",
"version": "1.6.0",
"main": "dist/mini-iframe-rpc.min.js",
"typings": "dist/types/mini-iframe-rpc.d.ts",
"scripts": {
"build": "webpack --mode development && webpack --mode production",
"test": "yarn run lint && yarn run unit",
"unit": "karma start test/karma.conf.js",
"update_browsers": "browserslist --json '> 1%, last 1 version, not ie_mob 11, not dead' | jq .browsers > browsers.json",
"lint": "tslint -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/neumark/mini-iframe-rpc.git"
},
"author": "Peter Neumark",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/neumark/mini-iframe-rpc/issues"
},
"homepage": "https://github.com/neumark/mini-iframe-rpc",
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-transform-runtime": "^7.12.17",
"@babel/preset-env": "^7.12.16",
"@babel/runtime-corejs3": "^7.12.13",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"babel-loader": "^8.2.2",
"browserstack-local": "^1.4.8",
"core-js": "3.8.3",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jasmine-core": "^3.6.0",
"karma": "^6.1.1",
"karma-babel-preprocessor": "^8.0.1",
"karma-browserstack-launcher": "^1.6.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^4.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^5.0.0",
"prettier": "^1.19.1",
"source-map-loader": "^0.2.4",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^5.3.3",
"typescript": "^4.1.5",
"webpack": "^5.22.0",
"webpack-cli": "^4.5.0"
},
"dependencies": {}
}