-
Notifications
You must be signed in to change notification settings - Fork 320
/
package.json
91 lines (91 loc) · 2.51 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "redux-logger",
"version": "4.0.0",
"description": "Logger for Redux",
"main": "dist/redux-logger.js",
"module": "dist/redux-logger.es.js",
"jsnext:main": "dist/redux-logger.es.js",
"scripts": {
"lint": "eslint src",
"test": "npm run lint && npm run spec",
"spec": "nyc --all --silent --require babel-core/register mocha --plugins transform-inline-environment-variables --recursive spec/*.spec.js",
"spec:watch": "npm run spec -- --watch",
"coverage": "nyc report",
"coverage:html": "nyc report --reporter=html && http-server -p 8077 ./coverage -o",
"coverage:production": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"clean": "rimraf dist",
"uglify": "uglifyjs dist/redux-logger.js -cm -o dist/redux-logger.js",
"build": "rollup -c && npm run uglify",
"precommit": "npm test && npm run lint",
"prepublish": "npm run clean && npm test && npm run lint && npm run build"
},
"eslintConfig": {
"extends": "airbnb",
"rules": {
"no-console": "off"
},
"env": {
"browser": true,
"mocha": true
}
},
"nyc": {
"exclude": [
"node_modules",
"spec",
"example",
"lib",
"dist",
"coverage",
"rollup.config.js"
]
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LogRocket/redux-logger.git"
},
"keywords": [
"redux",
"logger",
"redux-logger",
"middleware"
],
"author": "Eugene Rodionov (https://github.com/evgenyrodionov)",
"license": "MIT",
"bugs": {
"url": "https://github.com/LogRocket/redux-logger/issues"
},
"homepage": "https://github.com/LogRocket/redux-logger#readme",
"devDependencies": {
"babel-core": "^6.24.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-inline-environment-variables": "6.8.0",
"babel-preset-es2015": "^6.24.0",
"chai": "3.5.0",
"codecov": "1.0.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"http-server": "0.9.0",
"husky": "^0.13.2",
"mocha": "3.1.2",
"nyc": "9.0.1",
"redux": "^3.6.0",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"sinon": "^1.17.7",
"uglify-js": "^3.0.8"
},
"dependencies": {
"deep-diff": "^0.3.5"
}
}