-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.35 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": "postmatex",
"version": "1.8.0",
"description": "Fork of original: A powerful, simple, promise-based postMessage library",
"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"
},
"types": "build/index.d.ts",
"main": "build/postmate.js",
"module": "build/postmate.es.js",
"unpkg": "build/postmate.min.js",
"files": [
"build",
"src"
],
"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": "^8.0.1",
"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": "^8.2.0",
"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"
},
"jest": {
"testRegex": "./test/unit/.*.js$",
"testURL": "http://localhost/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johndcarmichael/postmatex.git"
},
"keywords": [
"postMessage",
"secure",
"handshake",
"promise",
"iframes",
"pci",
"security"
],
"author": "Jacob Kelley <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/johndcarmichael/postmatex/issues"
},
"homepage": "https://github.com/johndcarmichael/postmatex",
"browserslist": [
"defaults",
"ie >= 11"
]
}