-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
{
"name": "redux-phoenix",
"version": "1.4.0",
"description": "Persist redux state",
"repository": {
"type": "git",
"url": "https://github.com/adam-golab/redux-phoenix"
},
"main": "lib/redux-phoenix.js",
"module": "src/reduxPhoenix.js",
"scripts": {
"prepublishOnly": "NODE_PATH=src npm run build",
"prebuild": "rimraf ./lib",
"build": "NODE_PATH=src rollup -c",
"watch": "NODE_PATH=src rollup -c -w",
"lint": "eslint rollup.config.js src test",
"test": "NODE_PATH=src jest --no-cache",
"test:coverage": "NODE_PATH=src jest --coverage --no-cache",
"test:watch": "NODE_PATH=src jest --watch --no-cache"
},
"keywords": [
"redux",
"persist",
"store",
"persist",
"state"
],
"author": "Adam Gołąb",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.5.4",
"@babel/preset-env": "^7.5.4",
"babel-eslint": "10.0.2",
"babel-jest": "^24.8.0",
"babelrc-rollup": "^3.0.0",
"eslint": "^6.0.1",
"eslint-config-brainhub": "^1.11.0",
"jest": "^24.8.0",
"rimraf": "^2.6.2",
"rollup": "^1.16.7",
"rollup-plugin-babel": "^4.3.3",
"sinon": "^7.3.2"
},
"dependencies": {
"babel-plugin-external-helpers": "6.22.0",
"lodash": "^4.17.21",
"moment": "^2.24.0"
},
"jest": {
"testRegex": "/test/.*\\.js$",
"moduleDirectories": [
"node_modules",
"src"
],
"transform": {
"^.+\\.js?$": "<rootDir>/jest.transform.js"
}
}
}