-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.59 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
{
"name": "react-form-ctl",
"version": "2.0.1",
"description": "A react hook for validating forms and keeping track of state, inspired by Angulars FormControl",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"test": "prettier --check . && eslint . && jest --coverage",
"prepublishOnly": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MauriceNino/react-form-ctl.git"
},
"keywords": [
"react",
"forms",
"validation"
],
"author": "Maurice el-Banna",
"license": "MIT",
"bugs": {
"url": "https://github.com/MauriceNino/react-form-ctl/issues"
},
"homepage": "https://github.com/MauriceNino/react-form-ctl#readme",
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/chai-enzyme": "^0.6.8",
"@types/enzyme": "^3.10.9",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.24",
"@types/react": "*",
"@types/rewire": "^2.5.28",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"babel-jest": "^26.6.0",
"chai": "^4.3.4",
"chai-enzyme": "^1.0.0-beta.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.0.6",
"prettier": "2.3.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"ts-jest": "^27.0.4",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
}
}