-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 4.41 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 4.41 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "react-final-form-html5-validation",
"version": "2.0.0",
"description": "A swap-in replacement for 🏁 React Final Form's <Field> component to provide HTML5 Validation",
"type": "module",
"main": "dist/react-final-form-html5-validation.cjs.js",
"jsnext:main": "dist/react-final-form-html5-validation.es.js",
"module": "dist/react-final-form-html5-validation.es.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"start": "nps",
"test": "nps test",
"precommit": "lint-staged && npm start validate",
"prepare": "nps build",
"build": "node node_modules/nps-utils/node_modules/rimraf/bin.js dist && node node_modules/concurrently/src/main.js --kill-others-on-fail --prefix-colors \"bgBlue.bold,bgMagenta.bold,bgGreen.bold,bgBlack.bold,bgCyan.bold\" --prefix \"[{name}]\" --names \"build.es,build.cjs,build.umd.main,build.umd.min\" 'nps build.es' 'nps build.cjs' 'nps build.umd.main' 'nps build.umd.min'",
"clean": "rimraf dist",
"validate": "npm run clean && npm run build"
},
"author": "Erik Rasmussen <rasmussenerik@gmail.com> (http://github.com/erikras)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/final-form/react-final-form-html5-validation.git"
},
"bugs": {
"url": "https://github.com/final-form/react-final-form-html5-validation/issues"
},
"homepage": "https://github.com/final-form/react-final-form-html5-validation#readme",
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.27.1",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-function-sent": "^7.27.1",
"@babel/plugin-proposal-json-strings": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-throw-expressions": "^7.27.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@types/prop-types": "^15.7.14",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"doctoc": "^2.2.1",
"eslint": "^9.27.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"final-form": "^5.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.0-beta.3",
"lint-staged": "^16.1.0",
"nps": "^5.10.0",
"nps-utils": "^1.7.0",
"prettier": "^3.5.3",
"prettier-eslint-cli": "^8.0.1",
"prop-types": "^15.8.1",
"raf": "^3.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-final-form": "^7.0.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^6.0.1",
"rollup": "^4.41.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^29.3.4",
"typescript": "^5.3.3",
"@size-limit/preset-small-lib": "^12.0.0",
"size-limit": "^12.0.0"
},
"peerDependencies": {
"final-form": ">=5.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-final-form": ">=7.0.0"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"lint-staged": {
"*.{js*,ts*,json,md,css}": [
"prettier --write",
"git add"
]
},
"size-limit": [
{
"path": "dist/react-final-form-html5-validation.umd.min.js",
"limit": "2 kB"
},
{
"path": "dist/react-final-form-html5-validation.es.js",
"limit": "3 kB"
},
{
"path": "dist/react-final-form-html5-validation.cjs.js",
"limit": "3 kB"
}
],
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/final-form"
}
}