-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
121 lines (121 loc) · 3.08 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "react-formal",
"version": "2.7.1",
"description": "Classy HTML form management for React",
"main": "lib/cjs/index.cjs",
"types": "lib/cjs/index.d.ts",
"module": "lib/esm/index.js",
"author": {
"name": "Jason Quense",
"email": "[email protected]"
},
"homepage": "http://jquense.github.io/react-formal/",
"repository": {
"type": "git",
"url": "git+https://github.com/jquense/react-formal.git"
},
"license": "MIT",
"sideEffects": false,
"files": [
"lib",
"es"
],
"keywords": [
"react-formal",
"react",
"form",
"forms",
"inputs",
"validator",
"schema",
"validation",
"react-component",
"yup"
],
"jest": {
"testEnvironment": "jsdom",
"roots": [
"<rootDir>/test"
],
"setupFilesAfterEnv": [
"./test/index.js"
]
},
"scripts": {
"test": "jest",
"tdd": "jest --watch",
"lint": "eslint src",
"docs": "yarn --cwd www start",
"docs:deploy": "yarn --cwd www deploy",
"build:pick": "cherry-pick --cwd=lib --input-dir=../src --cjs-dir=cjs --esm-dir=esm",
"build": "rimraf lib && 4c build src && yarn build:pick",
"prepublishOnly": "npm run build",
"deploy-docs": "yarn --cwd www build --prefix-paths && gh-pages -d www/public",
"release": "rollout"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"quoteProps": "consistent"
},
"publishConfig": {
"access": "public"
},
"release": {
"conventionalCommits": true,
"publishDir": "lib"
},
"peerDependencies": {
"react": ">=16.4.0"
},
"dependencies": {
"@restart/hooks": "^0.4.1",
"@types/lodash": "^4.14.177",
"@types/react": ">=17.0.37",
"lodash": "^4.17.21",
"memoize-one": "^6.0.0",
"prop-types": "^15.7.2",
"property-expr": "^2.0.4",
"shallowequal": "^1.1.0",
"uncontrollable": "^7.2.1",
"yup": ">=0.32.11"
},
"devDependencies": {
"@4c/cli": "^4.0.4",
"@4c/rollout": "^4.0.2",
"@4c/tsconfig": "^0.4.0",
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.3",
"@types/sinon": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.4.2",
"babel-preset-jason": "^6.3.0",
"cherry-pick": "^0.5.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^8.3.0",
"eslint-config-4catalyzer-typescript": "^3.2.0",
"eslint-config-jason": "^8.2.2",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"gh-pages": "^3.2.3",
"jest": "^27.4.3",
"prettier": "^2.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-tackle-box": "^2.1.0",
"react-widgets": "^5.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.2"
},
"bugs": {
"url": "https://github.com/jquense/react-formal/issues"
}
}