-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.73 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
{
"name": "redux-persist-memory-storage",
"version": "0.4.0",
"description": "memory storage for redux-persist",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"lib/*",
"es/*"
],
"homepage": "https://github.com/modosc/redux-persist-memory-storage",
"bugs": {
"url": "https://github.com/modosc/redux-persist-memory-storage/issues"
},
"keywords": [
"redux-persist",
"redux"
],
"scripts": {
"test": "jest",
"clean": "rimraf lib es",
"build": "npm run clean && npm run build:commonjs && npm run build:es",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --source-maps",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --source-maps"
},
"author": {
"name": "jonathan schatz",
"email": "[email protected]",
"url": "https://github.com/modosc"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.0.2",
"babel-plugin-add-module-exports": "^1.0.0",
"chai": "^4.1.2",
"cross-env": "^7.0.2",
"jest": "^27.0.4",
"rimraf": "^3.0.0",
"sinon": "^11.1.1",
"sinon-chai": "^3.2.0"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testURL": "http://localhost/"
},
"dependencies": {
"@babel/runtime": "^7.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/modosc/redux-persist-memory-storage.git"
}
}