-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 2.12 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
{
"name": "react-window-communication-hook",
"version": "1.6.0",
"description": "Communicate between windows, tabs, iframes",
"main": "./lib/index.js",
"scripts": {
"release:major": "generate-changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm publish",
"release:minor": "generate-changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm publish",
"release:patch": "generate-changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm publish",
"prepublish": "npm run compile",
"compile": "./node_modules/.bin/babel ./src/ --out-dir ./lib/",
"lint": "eslint ./src --fix"
},
"peerDependencies": {
"react": "^16.9",
"react-dom": "^16.9"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.9.0",
"babel-core": "^6.7.4",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.1.18",
"babel-register": "^6.6.0",
"browser-env": "^3.2.5",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-avraam": "^1.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-react": "^7.11.1",
"generate-changelog": "^1.7.1",
"raf": "^3.4.0",
"react-addons-test-utils": "^15.4.2",
"react-scripts": "latest",
"react-test-renderer": "^16.7.0-alpha.0",
"sinon": "^7.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AvraamMavridis/react-context-communication-hook.git"
},
"keywords": [
"react",
"window",
"tab",
"communicate",
"hook"
],
"author": "Avraam Mavridis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AvraamMavridis/react-context-communication-hook/issues"
},
"homepage": "https://github.com/AvraamMavridis/react-context-communication-hook#readme"
}