forked from michaelcontento/redux-storage-merger-immutablejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "redux-storage-merger-immutablejs",
"version": "1.0.1",
"description": "ImmutableJS compatible merger for redux-storage",
"main": "build/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"test": "make lint test build"
},
"repository": {
"type": "git",
"url": "https://github.com/michaelcontento/redux-storage-merger-immutablejs.git"
},
"homepage": "https://github.com/michaelcontento/redux-storage-merger-immutablejs",
"keywords": [
"redux",
"redux-storage",
"redux-storage-merger"
],
"author": "Michael Contento <[email protected]>",
"files": [
"build/",
"src",
"!**/__tests__/**"
],
"eslintConfig": {
"extends": "michaelcontento"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-preset-michaelcontento": "^1.3.0",
"eslint": "^1.10.3",
"eslint-config-michaelcontento": "^1.1.1",
"eslint-plugin-mocha-only": "0.0.3",
"mocca": "^0.3.0",
"release-it": "^2.3.1"
},
"dependencies": {
"immutable": "^3.7.6",
"lodash.isarray": "^4.0.0",
"lodash.isfunction": "^3.0.8",
"lodash.isobject": "^3.0.2"
}
}