-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.41 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": "form-hooks",
"version": "0.7.0",
"description": "Easy forms in React with hooks",
"main": "dist/index.js",
"umd:main": "dist/form-hooks.umd.production.js",
"module": "dist/form-hooks.es.production.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsdx build",
"start": "tsdx watch",
"test": "tsdx test --env=jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BenMagyar/form-hooks.git"
},
"keywords": [
"react",
"hooks",
"form"
],
"files": [
"dist"
],
"author": "Ben Magyar <me@benmagyar.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BenMagyar/form-hooks/issues"
},
"homepage": "https://github.com/BenMagyar/form-hooks#readme",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "^24.0.12",
"@types/react": "^16.8.16",
"@types/react-dom": "^16.8.4",
"husky": "^2.2.0",
"prettier": "^1.17.0",
"pretty-quick": "^1.10.0",
"react": "^16.9.0-alpha.0",
"react-dom": "^16.9.0-alpha.0",
"react-test-renderer": "^16.9.0-alpha.0",
"react-testing-library": "^7.0.0",
"tsdx": "^0.5.6",
"typescript": "^3.4.5"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
}