-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.19 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
{
"name": "react-memoize",
"version": "1.0.1",
"description": "Memoized mapStateToProps on component level",
"main": "dist/index.js",
"types": "react-memoize.d.ts",
"scripts": {
"build": "babel src -d dist",
"test": "jest --no-cache",
"test:ci": "jest --no-cache --coverage",
"prepublish": "npm run build",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"package-self": "package-self",
"size": "npm run build && size-limit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theKashey/react-memoize.git"
},
"keywords": [
"react",
"memoize",
"state",
"renderprop"
],
"author": "theKashey <thekashey@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/theKashey/react-memoize/issues"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.14",
"@storybook/addon-links": "^3.2.14",
"@storybook/react": "^3.2.14",
"@types/react": "^16.0.38",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"codecov": "^3.0.2",
"create-react-context": "^0.2.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^4.2.0",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-react": "^7.3.0",
"jest": "^23.0.0",
"package-self": "^1.1.1",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-test-renderer": "^16.4.0",
"size-limit": "^0.21.1"
},
"homepage": "https://github.com/theKashey/react-memoize#readme",
"dependencies": {
"memoize-one": "^3.0.1",
"memoize-state": "^2.0.2",
"prop-types": "15.6.2",
"react-lifecycles-compat": "^3.0.4"
}
}