-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.4 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
{
"name": "react-jeff",
"version": "1.2.1",
"description": "A Good Form Library",
"main": "dist/react-jeff.js",
"types": "dist/react-jeff.d.ts",
"source": "src/react-jeff.ts",
"amdName": "ReactJeff",
"files": [
"dist"
],
"scripts": {
"format": "prettier --write '**/*.{ts,json,html,md}'",
"build": "rm -rf dist && tsc --noEmit && microbundle --no-compress",
"prepublish": "npm run build",
"test": "ava",
"example:build": "parcel build example/index.html --out-dir example-dist",
"start": "parcel example/index.html --out-dir example-dist"
},
"keywords": [
"react",
"form",
"forms",
"hooks",
"hook",
"final-form",
"final",
"formik",
"library",
"simple",
"easy",
"plain",
"async",
"validation",
"validate",
"valid",
"dirty",
"focused",
"touch",
"touched"
],
"author": "Jamie Kyle <me@thejameskyle.com>",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.4"
},
"devDependencies": {
"@types/pretty-format": "^20.0.1",
"@types/react": "^16.8.8",
"email-regex": "^3.0.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"microbundle": "^0.11.0",
"parcel": "^1.12.1",
"prettier": "^1.16.4",
"pretty-format": "^24.7.0",
"react": "^16.0.0",
"react-dom": "^16.8.4",
"typescript": "^3.3.3333"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,json,md}": [
"prettier --write",
"git add"
]
}
}