forked from dollarshaveclub/postmate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.2 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
72
73
74
75
76
77
78
{
"name": "postmate",
"version": "1.4.1",
"description": "A powerful, simple, promise-based postMessage library",
"main": "build/postmate.js",
"module": "build/postmate.es.js",
"unpkg": "build/postmate.min.js",
"files": [
"build",
"src"
],
"devDependencies": {
"@babel/core": "^7.0.0-beta.40",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^22.2.2",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"connect": "^3.4.1",
"es-check": "^2.0.0",
"eslint": "^4.17.0",
"eslint-config-dollarshaveclub": "^3.0.4",
"gulp": "^3.9.1",
"gulp-mocha-phantomjs": "^0.12.2",
"gzip-size": "^4.1.0",
"jest": "^22.0.0",
"mocha": "^5.0.1",
"mocha-phantomjs": "^4.1.0",
"nyc": "^11.3.0",
"regenerator-runtime": "^0.11.1",
"rollup": "^0.57.0",
"rollup-plugin-babel": "^4.0.0-beta.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"rsvp": "^4.8.1",
"serve-static": "^1.11.1",
"uglify-js": "^3.3.11",
"vinyl-source-stream": "^2.0.0"
},
"scripts": {
"eslint": "eslint . --fix .",
"test": "npm run test:unit && npm run test:acceptance && npm run test:es-check",
"test:es-check": "es-check es5 build/postmate.min.js",
"test:unit": "nyc jest --coverage",
"test:acceptance": "gulp test --coverage",
"build": "npm run build:dist && npm run build:readme",
"build:readme": "node ./scripts/update-readme.js",
"build:dist": "rollup --config configs/rollup.config.js",
"postpublish": "git tag $npm_package_version && git push origin --tags"
},
"jest": {
"testRegex": "./test/unit/.*.js$"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dollarshaveclub/postmate.git"
},
"keywords": [
"postMessage",
"secure",
"handshake",
"promise",
"iframes",
"pci",
"security"
],
"author": "Jacob Kelley <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dollarshaveclub/postmate/issues"
},
"homepage": "https://github.com/dollarshaveclub/postmate",
"browserslist": [
"defaults",
"ie >= 11"
]
}