-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "redux-notify",
"version": "0.2.0",
"description": "Notify when specified redux actions are dispatched.",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist coverage",
"lint": "eslint src test examples",
"build": "babel src --out-dir lib",
"preversion": "npm run clean && npm run check",
"version": "npm run build",
"postversion": "git push && git push --tags && npm run clean",
"prepublish": "npm run clean && npm run build",
"test": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/zalmoxisus/redux-notify.git"
},
"homepage": "https://github.com/zalmoxisus/redux-notify",
"keywords": [
"redux",
"notify",
"messaging",
"postMessage",
"events"
],
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"isparta": "^3.0.3",
"rimraf": "^2.3.4"
},
"peerDependencies": {
"redux": ">1.0.0"
},
"author": "Mihail Diordiev <[email protected]>",
"license": "MIT"
}