This repository has been archived by the owner on Mar 22, 2022. It is now read-only.
forked from dollarshaveclub/postmate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.53 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
{
"name": "postmate",
"version": "1.0.2",
"description": "A powerful, simple, promise-based postMessage library",
"main": "src/postmate.js",
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-preset-es2015-rollup": "^1.1.1",
"chai": "^3.5.0",
"connect": "^3.4.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.12.0",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-header": "^1.8.7",
"gulp-mocha-phantomjs": "^0.11.0",
"mocha": "^3.0.2",
"mocha-phantomjs": "^4.1.0",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-uglify": "^1.0.1",
"rollup-stream": "^1.11.0",
"rsvp": "^3.2.1",
"serve-static": "^1.11.1",
"uglify-js": "^2.7.0",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"test": "gulp test",
"build": "gulp build && gulp update-readme",
"build-watch": "gulp build-watch",
"lint": "gulp lint",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag $PACKAGE_VERSION && git push origin --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dollarshaveclub/postmate.git"
},
"keywords": [
"postMessage",
"secure",
"handshake",
"promise"
],
"author": "Jacob Kelley <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dollarshaveclub/postmate/issues"
},
"homepage": "https://github.com/dollarshaveclub/postmate"
}