forked from krakenjs/post-robot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.16 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
64
65
66
67
68
69
70
71
{
"name": "post-robot",
"version": "10.0.24",
"description": "Simple postMessage based server.",
"main": "index.js",
"scripts": {
"setup": "npm install && npm run flow-typed",
"lint": "eslint src/ test/ *.js",
"flow-typed": "rm -rf flow-typed && flow-typed install",
"flow": "flow",
"karma": "cross-env NODE_ENV=test babel-node --plugins=transform-es2015-modules-commonjs ./node_modules/.bin/karma start",
"babel": "babel src/ --out-dir dist/module",
"webpack": "babel-node --config-file ./node_modules/grumbler-scripts/config/.babelrc-node --plugins=transform-es2015-modules-commonjs ./node_modules/.bin/webpack --display-optimization-bailout --progress",
"test": "npm run lint && npm run flow-typed && npm run flow && npm run karma",
"build": "npm run test && npm run babel && npm run webpack -- $@",
"release": "./publish.sh",
"release:patch": "./publish.sh patch",
"release:minor": "./publish.sh minor",
"release:major": "./publish.sh major",
"clean": "rimraf dist coverage",
"reinstall": "rimraf flow-typed && rimraf node_modules && npm install && flow-typed install",
"debug": "cross-env NODE_ENV=debug",
"changelog": "./node_modules/.bin/auto-changelog"
},
"repository": {
"type": "git",
"url": "git://github.com/krakenjs/post-robot.git"
},
"keywords": [
"cross-domain",
"cross domain",
"xdm",
"iframe",
"postmessage",
"krakenjs",
"kraken"
],
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"files": [
"dist/",
"src/",
"globals.js"
],
"readmeFilename": "README.md",
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "compact",
"unreleased": false,
"commitLimit": 10,
"backfillLimit": 10,
"ignoreCommitPattern": "Dist"
},
"devDependencies": {
"auto-changelog": "^1.11.0",
"flow-bin": "^0.100.0",
"grumbler-scripts": "^3",
"mocha": "^4"
},
"dependencies": {
"belter": "^1.0.41",
"cross-domain-safe-weakmap": "^1.0.1",
"cross-domain-utils": "^2.0.0",
"universal-serialize": "^1.0.4",
"zalgo-promise": "^1.0.3"
}
}