forked from final-form/react-final-form-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.61 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
{
"name": "react-final-form-hooks",
"version": "2.0.2",
"description": "React Hooks to bind to 🏁 Final Form's high performance subscription-based form state management engine",
"main": "dist/react-final-form-hooks.cjs.js",
"jsnext:main": "dist/react-final-form-hooks.es.js",
"module": "dist/react-final-form-hooks.es.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"scripts"
],
"scripts": {
"start": "nps",
"doctoc": "doctoc README.md && doctoc docs/faq.md && prettier --write README.md && prettier --write docs/faq.md",
"precommit": "lint-staged && npm start validate",
"prepublish": "npm start validate",
"postinstall": "node ./scripts/postinstall.js || exit 0",
"test": "NODE_ENV=test nps test"
},
"author": "Erik Rasmussen <[email protected]> (http://github.com/erikras)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/final-form/react-final-form-hooks.git"
},
"bugs": {
"url": "https://github.com/final-form/react-final-form-hooks/issues"
},
"homepage": "https://github.com/final-form/react-final-form-hooks#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@types/react": "^16.8.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"bundlesize": "^0.18.0",
"cryptiles": ">=4.1.2",
"doctoc": "^1.3.0",
"eslint": "^5.13.0",
"eslint-config-react-app": "^3.0.3",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "^1.6.0",
"fast-deep-equal": "^2.0.1",
"final-form": "^4.15.0",
"hoek": ">=4.2.1",
"husky": "^1.1.1",
"jest": "^24.5.0",
"lint-staged": "^8.1.3",
"merge": ">=1.2.1",
"nps": "^5.9.3",
"nps-utils": "^1.7.0",
"opencollective": "^1.0.3",
"prettier": "^1.16.4",
"prettier-eslint-cli": "^4.7.1",
"prop-types": "^15.6.2",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-hooks-testing-library": "^0.4.0",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.0.1",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.2",
"tslint": "^5.11.0",
"typescript": "^3.3.1"
},
"peerDependencies": {
"final-form": "^4.7.3",
"prop-types": "^15.6.2",
"react": "^16.8.1"
},
"lint-staged": {
"*.{js*,ts*,json,md,css}": [
"prettier --write",
"git add"
]
},
"jest": {
"testEnvironment": "jsdom"
},
"bundlesize": [
{
"path": "dist/react-final-form-hooks.umd.min.js",
"threshold": "2kB"
},
{
"path": "dist/react-final-form-hooks.es.js",
"threshold": "3kB"
},
{
"path": "dist/react-final-form-hooks.cjs.js",
"threshold": "3kB"
}
],
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/final-form"
},
"dependencies": {}
}