-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.04 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.04 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
{
"name": "use-input-validator",
"version": "1.1.4",
"description": "Input validation that stays out of the way",
"main": "build/index.js",
"module": "build/index.es.js",
"types": "build/",
"files": [
"build"
],
"exports": {
"require": "./build/index.js",
"import": "./build/index.es.js"
},
"scripts": {
"build": "rimraf build && rollup -c",
"storybook": "start-storybook -p 6006",
"storybook:refresh-cache": "start-storybook -p 6006 --no-manager-cache",
"storybook:export": "build-storybook",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@react-hook/debounce": "^4.0.0"
},
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2",
"yup": ">=0.32.9"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@storybook/react": "^6.3.10",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.27",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"rollup-plugin-node-externals": "^2.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.5",
"tslib": "^2.3.1",
"typescript": "^4.4.3",
"yup": "^0.32.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ucdavis/UseInputValidator.git"
},
"author": "Spruce Weber-Milne <swebermilne@ucdavis.edu>",
"license": "MIT",
"keywords": [
"react",
"hooks",
"form",
"input",
"validation",
"yup"
],
"bugs": {
"url": "https://github.com/ucdavis/UseInputValidator/issues"
},
"homepage": "https://github.com/ucdavis/UseInputValidator#readme"
}