-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "redux-bundler-hook",
"version": "1.0.3",
"description": "React bindings to redux-bundler with hooks",
"main": "index.js",
"scripts": {
"build": "microbundle",
"prepublishOnly": "microbundle",
"dev": "microbundle watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abuinitski/redux-bundler-hook.git"
},
"keywords": [
"react",
"redux"
],
"author": "Arseni Buinitski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/abuinitski/redux-bundler-hook/issues"
},
"homepage": "https://github.com/abuinitski/redux-bundler-hook#readme",
"devDependencies": {
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.7.1",
"jest": "^24.7.1",
"microbundle": "^0.11.0",
"prettier": "^1.17.0",
"react": "^16.8.3",
"react-dom": "^16.8.6",
"react-hooks-testing-library": "^0.5.0",
"react-test-renderer": "^16.8.6",
"react-testing-library": "^7.0.0",
"redux-bundler": "^23.1.0"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"bracketSpacing": true,
"jsxSingleQuote": false,
"jsxBracketSameLine": false,
"arrowParens": "avoid"
},
"peerDependencies": {
"redux-bundler": "*",
"react": ">=16.8.6"
}
}