-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "@surglogs/with-derived-props",
"version": "1.1.1",
"description": "withDerivedProps HOC for easy memoization of derived data in React components",
"main": "lib/index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest ./src",
"build": "rm -rf ./lib && ./node_modules/.bin/babel ./src -d ./lib",
"prepare": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/surglogs/with-derived-props"
},
"keywords": [
"react",
"hoc",
"memoization",
"recompose"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/surglogs/with-derived-props/issues"
},
"homepage": "https://github.com/surglogs/with-derived-props#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@types/jest": "^25.1.4",
"@types/sinon": "^7.5.2",
"babel-loader": "^8.0.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^29.3.1",
"react-dom": "^16.13.0",
"sinon": "^9.0.1",
"react": "^16.13.0",
"recompose": "^0.30.0",
"ramda": "^0.27.0"
},
"peerDependencies": {
"recompose": "^0.30.0",
"ramda": "^0.27.0"
},
"dependencies": {}
}