popostmate
Version:
A powerful, simple, promise-based postMessage library
87 lines (86 loc) • 2.46 kB
JSON
{
"name": "popostmate",
"version": "2.0.0",
"description": "A powerful, simple, promise-based postMessage library",
"main": "build/postmate.js",
"types": "types/index.d.ts",
"module": "build/postmate.es.js",
"unpkg": "build/postmate.min.js",
"files": [
"build",
"src",
"types"
],
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"babel-core": "^7.0.0-bridge",
"babel-jest": "^26.6.1",
"chai": "^4.2.0",
"codecov": "^3.8.0",
"connect": "^3.7.0",
"conventional-changelog-cli": "^2.1.0",
"es-check": "^5.1.2",
"eslint": "^7.12.1",
"eslint-config-dollarshaveclub": "^3.0.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-standard": "^4.0.2",
"gulp": "^4.0.2",
"gulp-mocha-phantomjs": "^0.12.2",
"gzip-size": "^5.1.1",
"jest": "^26.6.1",
"mocha": "^7.0.1",
"mocha-phantomjs": "^4.1.0",
"nyc": "^15.1.0",
"regenerator-runtime": "^0.13.7",
"rollup": "^2.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^6.0.4",
"rsvp": "^4.8.5",
"serve-static": "^1.14.1",
"uglify-js": "^3.11.4",
"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/vpopolin/postmate.git"
},
"keywords": [
"postMessage",
"secure",
"handshake",
"promise",
"iframes",
"pci",
"security"
],
"author": "Jacob Kelley <jakie8@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vpopolin/postmate/issues"
},
"homepage": "https://github.com/vpopolin/postmate",
"browserslist": [
"defaults",
"ie >= 11"
]
}