-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.24 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "redux-context-container",
"version": "2.0.3",
"description": "Communicate React components without passing props explicitly. Give Redux apps a structure based on Connected-only-Containers.",
"main": "dist/redux-context-container.js",
"module": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/rodrigoBerlochi/redux-context-container.git"
},
"typings": "./index.d.ts",
"scripts": {
"clean": "rimraf lib dist es",
"lint": "eslint src test",
"test": "jest --watchAll --config",
"test-cov": "jest --coverage",
"test-ci": "jest --coverage",
"build": "webpack --config ./webpack.config.js",
"badges": "npm run test-cov && jest-coverage-badges input ./coverage/coverage-summary.json output .badges/"
},
"files": [
"lib",
"es",
"src",
"dist",
"index.d.ts"
],
"keywords": [
"React",
"Context",
"Redux",
"Properties",
"Container"
],
"author": "Rodrigo Berlochi, <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rodrigoBerlochi/redux-context-container/issues"
},
"homepage": "https://github.com/rodrigoBerlochi/redux-context-container#readme",
"peerDependencies": {
"react": "~16.8.1",
"react-redux": "~6.0.0",
"redux": "~4.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"@testing-library/react": "^8.0.8",
"babel-loader": "^8.0.5",
"cross-env": "^1.0.7",
"eslint": "~5.14.1",
"eslint-config-airbnb": "~17.1.0",
"eslint-plugin-import": "~2.16.0",
"eslint-plugin-jest": "~22.3.0",
"eslint-plugin-jsx-a11y": "~6.2.1",
"eslint-plugin-react": "~7.12.4",
"husky": "~1.3.1",
"jest": "~24.1.0",
"jest-cli": "~24.1.0",
"jest-coverage-badges": "^1.1.2",
"prettier": "^1.15.3",
"pretty-quick": "~1.10.0",
"prop-types": "~15.7.2",
"react": "~16.8.1",
"react-redux": "~6.0.0",
"react-test-renderer": "^16.8.6",
"redux": "~4.0.0",
"rimraf": "^2.5.2",
"typescript": "^3.3.4000",
"typings-tester": "^0.3.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"lodash.capitalize": "~4.2.1"
}
}