This repository has been archived by the owner on Oct 26, 2023. It is now read-only.
forked from react-recompose/react-recompose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.46 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "eh-react-recompose",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/Thinkei/react-recompose.git"
},
"license": "MIT",
"scripts": {
"lint": "eslint scripts src",
"build:recompose": "npm run build:recompose:modules && npm run build:recompose:rollup && npm run build:recompose:checksum",
"build:recompose:modules": "cross-env NODE_ENV=cjs babel ./src/packages/recompose --out-dir ./lib/packages/recompose --ignore='**/__tests__/**,**/node_modules/**'",
"build:recompose:rollup": "cross-env PACKAGE_NAME=recompose rollup --bundleConfigAsCjs --config scripts/rollup.config.js",
"build:recompose:checksum": "cd scripts && node -e 'require(\"./checksum-gulpfile.js\").default()'",
"test": "jest && flow check && cross-env SNAPSHOT=match npm run build:recompose",
"test:watch": "cross-env BABEL_ENV=cjs jest --watch",
"release": "node scripts/release.js",
"postinstall": "node scripts/installNestedPackageDeps.js",
"format": "prettier --semi false --trailing-comma es5 --single-quote --write 'scripts/*.js' 'src/packages/*/*.js' 'src/packages/*/!(node_modules)/**/*.js'",
"precommit": "lint-staged",
"prepush": "yarn test"
},
"jest": {
"testEnvironment": "jsdom",
"testTimeout": 20000,
"testMatch": [
"<rootDir>/lib/packages/recompose/dist/__tests__/*-test.js",
"<rootDir>/lib/packages/recompose/__tests__/*-test.js",
"<rootDir>/src/**/__tests__/**/*-test.js"
],
"coverageReporters": [
"text-summary",
"lcov"
],
"transformIgnorePatterns": [],
"setupFilesAfterEnv": [
"<rootDir>/scripts/jest.setup.js"
]
},
"lint-staged": {
"*.js": [
"prettier --semi false --trailing-comma es5 --single-quote --write",
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@brodybits/rollup-plugin-size-snapshot": "^0.14.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"baconjs": "^1.0.1",
"chalk": "^4.1.2",
"change-case": "^4.1.2",
"create-react-class": "^15.7.0",
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "npm:@wojtekmaj/enzyme-adapter-react-17",
"eslint": "^8.35.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-react": "^7.32.2",
"flow-bin": "^0.200.1",
"flyd": "^0.2.8",
"gulp-concat": "^2.6.1",
"gulp-file-checksum": "^2.0.2",
"husky": "^0.13.3",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"kefir": "^3.8.8",
"lint-staged": "^3.4.0",
"lodash": "^4.17.21",
"most": "^1.9.0",
"prettier": "~1.5.3",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"readline-sync": "^1.4.10",
"rollup": "^3.18.0",
"rollup-plugin-uglify": "^4.0.0",
"rx": "^4.1.0",
"rxjs": "^5.5.12",
"shelljs": "^0.8.5",
"sinon": "^1.17.1",
"vinyl-fs": "^3.0.3",
"xstream": "^5.0.5"
},
"dependencies": {}
}