This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
76 lines (76 loc) · 2.16 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": "with-immutable-props-to-js",
"version": "2.1.0",
"description": "A higher-order component for keeping Immutable objects outside your presentational components",
"keywords": [
"react",
"redux",
"immutable",
"selectors"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"repository": "git@github.com:tophat/with-immutable-props-to-js.git",
"author": "Top Hat Monocle Corp. <opensource@tophat.com>",
"license": "Apache-2.0",
"scripts": {
"test": "jest",
"lint": "eslint . --max-warnings 0",
"fix": "eslint --fix .",
"build": "NODE_ENV=production babel src -d lib --copy-files",
"contrib:add": "all-contributors add",
"contrib:generate": "all-contributors generate",
"contrib:check": "all-contributors check",
"prepack": "yarn clean && yarn build",
"clean": "rm -rf lib",
"coverage": "codecov"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.10.4",
"@tophat/eslint-config": "^0.7.0",
"all-contributors-cli": "^6.17.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"codecov": "^3.8.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.1.0",
"immutable": "^4.0.0-rc.12",
"jest": "^27.0.0",
"prettier": "^2.0.5",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"peerDependencies": {
"immutable": ">=3.0.0",
"react": ">=16.3.0",
"react-dom": ">=16.3.0"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/tests/setupTestFramework.js"
],
"collectCoverageFrom": [
"src/**/*.js"
]
},
"dependencies": {
"hoist-non-react-statics": "^3.3.2"
}
}