forked from imevro/redux-diff-logger
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.49 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
{
"name": "redux-diff-logger",
"version": "0.0.6",
"description": "Diff logger between states for redux",
"main": "build/logger.js",
"scripts": {
"test": "npm run lint",
"clean": "$(npm bin)/rimraf build",
"lint": "$(npm bin)/eslint src",
"build:module": "$(npm bin)/babel src --out-dir build",
"build:example": "$(npm bin)/webpack -p --config example/webpack.config.production.js",
"build": "npm run build:module && npm run build:example",
"prepublish": "npm run clean && npm run test && npm run build",
"deploy:ghpages": "$(npm bin)/gh-pages -d example/dist",
"deploy": "npm run build && git add -A && git commit -am 'chore: update docs' && git push && npm run deploy:ghpages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fcomb/redux-diff-logger.git"
},
"keywords": [
"redux",
"logger",
"redux-logger",
"redux",
"middleware"
],
"author": "Eugene Rodionov (https://github.com/theaqua)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fcomb/redux-diff-logger/issues"
},
"homepage": "https://github.com/fcomb/redux-diff-logger#readme",
"dependencies": {
"deep-diff": "^0.3.2"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-core": "^5.8.22",
"babel-eslint": "^4.0.5",
"babel-loader": "^5.3.2",
"eslint": "^1.1.0",
"eslint-config-airbnb": "0.0.7",
"eslint-plugin-react": "^3.2.1",
"gh-pages": "^0.3.1",
"rimraf": "^2.4.2",
"webpack": "^1.11.0"
}
}