-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
50 lines (50 loc) · 1.22 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": "redux-diff-logger",
"version": "0.0.9",
"description": "Diff logger between states for redux",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint",
"clean": "$(npm bin)/rimraf lib",
"lint": "$(npm bin)/eslint src",
"build:lib": "$(npm bin)/babel src --out-dir lib",
"build": "npm run build:lib",
"prepublish": "npm run clean && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fcomb/redux-diff-logger.git"
},
"files": [
"lib",
"src"
],
"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"
}
}