-
Notifications
You must be signed in to change notification settings - Fork 183
/
package.json
84 lines (84 loc) · 2.4 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
79
80
81
82
83
84
{
"name": "postmate",
"version": "1.6.0",
"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.51",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.0.0",
"chai": "^4.1.2",
"codecov": "^3.0.2",
"connect": "^3.4.1",
"conventional-changelog-cli": "^2.0.5",
"es-check": "^5.0.0",
"eslint": "^6.0.0",
"eslint-config-dollarshaveclub": "^3.0.4",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-standard": "^4.0.1",
"gulp": "4.0.2",
"gulp-mocha-phantomjs": "0.12.2",
"gzip-size": "^5.0.0",
"jest": "^22.0.0",
"mocha": "^7.0.1",
"mocha-phantomjs": "^4.1.0",
"nyc": "^15.0.0",
"regenerator-runtime": "^0.13.0",
"rollup": "^1.21.4",
"rollup-plugin-babel": "^4.0.0-beta.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^6.0.0",
"rsvp": "^4.8.1",
"serve-static": "^1.11.1",
"uglify-js": "^3.6.3",
"vinyl-source-stream": "^2.0.0"
},
"scripts": {
"eslint": "eslint . --fix",
"eslint:ci": "eslint .",
"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": "jest --coverage",
"test:acceptance": "gulp test",
"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$",
"testURL": "http://localhost/"
},
"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"
]
}