-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.33 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": "reselect-map-change-memoize",
"version": "0.0.3",
"description": "A memoize function for reselect-map which will make a callback when a result changes",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"files": [
"lib",
"src",
"dist",
"jsnext"
],
"scripts": {
"compile:commonjs": "babel -d lib/ src/",
"compile:jsnext": "cross-env NODE_ENV=rollup babel -d jsnext/ src/",
"compile:umd": "cross-env NODE_ENV=rollup rollup -c",
"compile": "npm run compile:commonjs && npm run compile:jsnext && npm run compile:umd",
"prepublish": "npm run compile",
"test": "mocha --compilers js:babel-register --recursive"
},
"keywords": [
"reselect",
"memoize",
"logging"
],
"author": "Libor Olsak",
"repository": {
"type": "git",
"url": "https://github.com/LiborOl/reselect-map-change-memoize"
},
"license": "MIT",
"dependencies": {
"reselect": ">=2.5.3",
"reselect-map" : ">=0.0.2",
"reselect-change-memoize" : ">=1.0.2"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-register": "^6.7.2",
"expect": "^1.16.0",
"cross-env": "^2.0.0",
"immutable": "^3.8.1",
"mocha": "^2.4.5",
"rollup": "^0.34.1",
"rollup-plugin-babel": "^2.4.0"
}
}