forked from kirill-konshin/next-redux-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.3 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.3 KB
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
{
"name": "next-flux-wrapper",
"version": "0.0.6",
"description": "Flux wrapper for Next.js",
"main": "src/index.js",
"dependencies": {
"flux": "^3.1.3",
"react": "^16.2.0",
"transit-immutable-js": "0.7.0",
"transit-js": "0.8.846"
},
"devDependencies": {
"babel-jest": "22.2.2",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"immutable": "3.8.2",
"jest": "22.2.2",
"react-dom": "16.2.0"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UYEONG/next-flux-wrapper.git"
},
"author": "UYEONG <uyeong21c@gmail.com> (http://blog.coderifleman.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/UYEONG/next-flux-wrapper/issues"
},
"homepage": "https://github.com/UYEONG/next-flux-wrapper#readme",
"jest": {
"testRegex": "(/src/.*\\.spec.js)$",
"setupFiles": [
"raf/polyfill",
"./jestsetup.js"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"./jestsetup.js"
]
},
"babel": {
"presets": [
"env",
"react"
],
"plugins": [
"transform-async-to-generator"
]
}
}