-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (72 loc) · 2.65 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
{
"name": "@actra-development-oss/redux-persist-transform-filter-immutable",
"description": "Filter transformator for redux-persist supporting immutable.js",
"keywords": [
"react",
"redux",
"redux-persist",
"redux-persist-transform",
"transform",
"filter",
"immutable"
],
"license": "MIT",
"version": "0.2.0",
"author": {
"name": "Gabriel Schuster - actra.development",
"email": "[email protected]",
"url": "http://www.actra.de/velopment"
},
"homepage": "https://github.com/actra-development-oss/redux-persist-transform-filter-immutable#readme",
"repository": {
"type": "git",
"url": "[email protected]:actra-development-oss/redux-persist-transform-filter-immutable.git"
},
"bugs": {
"url": "https://github.com/actra-development-oss/redux-persist-transform-filter-immutable/issues",
"email": "[email protected]"
},
"publishConfig": {
"registry": "https://registry.npmjs.com/",
"access": "public"
},
"dependencies": {
"immutable": "^3.8.2",
"lodash.forin": "^4.4.0",
"lodash.get": "^4.4.2",
"lodash.includes": "^4.3.0",
"lodash.isempty": "^4.4.0",
"lodash.isobject": "^3.0.2",
"lodash.isstring": "^4.0.1",
"lodash.isundefined": "^3.0.1",
"lodash.pickby": "^4.6.0",
"lodash.set": "^4.3.2",
"lodash.unset": "^4.5.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"mkdirp": "^0.5.1",
"redux": "^3.7.2",
"rimraf": "^2.6.1"
},
"peerDependencies": {
"immutable": "^3.8.2"
},
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"test": "npm run-script mocha -- --require babel-register spec.js",
"build": "npm run-script rimraf -- ./dist && npm run-script mkdirp -- dist && npm run-script babel -- index.js -o dist/index.js",
"release": "npm run-script test && npm run-script build && npm publish --access public",
"babel": "./node_modules/.bin/babel",
"mkdirp": "./node_modules/.bin/mkdirp",
"mocha": "./node_modules/.bin/mocha",
"rimraf": "./node_modules/.bin/rimraf"
}
}