-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "@retailmenot/redux-mount-store",
"author": "RMN Engineering",
"contributors": [
"Lon Ingram <[email protected]>",
"Eric Capps <[email protected]>",
"Luke Zilioli <[email protected]>"
],
"license": "MIT",
"version": "1.1.3",
"main": "index.js",
"dependencies": {
"lodash.assign": "^4.0.9",
"lodash.get": "^4.3.0",
"lodash.has": "^4.4.0",
"lodash.isarray": "^4.0.0",
"lodash.isplainobject": "^4.0.4",
"lodash.mapvalues": "^4.4.0",
"lodash.merge": "^4.4.0",
"lodash.omit": "^4.3.0",
"lodash.set": "^4.2.0",
"object-path": "^0.11.1",
"object-path-immutable": "^0.4.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^2.11.0",
"redux": "^3.5.2",
"sinon": "^1.17.4",
"tap": "^5.7.1"
},
"scripts": {
"clean": "rm -rf dist/",
"compile": "babel index.js --out-dir dist/ && babel lib/ --out-dir dist/lib/",
"eslint": "eslint *.js **/*.js",
"prepublishOnly": "npm run clean && npm run compile",
"test": "tap test/*.js"
},
"directories": {
"test": "test"
},
"keywords": [],
"description": "Store enhancer for redux adding mounting capabilities"
}