-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.91 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
{
"name": "react-formist",
"version": "1.1.0",
"description": "react hook to handle forms",
"author": "Massimo Iacolare",
"license": "MIT",
"main": "dist/useFormist.js",
"module": "dist/useFormist.es.js",
"files": [
"dist/useFormist.js",
"dist/useFormist.es.js",
"dist/useFormist.js.map"
],
"repository": {
"url": "https://github.com/iacoware/react-formist"
},
"scripts": {
"clean": "rm -rf dist .cache && jest --clearCache",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src",
"build": "npm run clean && npm run lint && jest && rollup -c rollup.config.js",
"release": "git push --tags && npm publish",
"coverage:coveralls": "jest --coverage",
"example": "(cd example && npm install); (cd example && npm start)"
},
"peerDependencies": {
"react": "^16.13.1"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/plugin-transform-runtime": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/preset-react": "7.9.4",
"@testing-library/react": "10.0.4",
"@testing-library/react-hooks": "3.2.1",
"coveralls": "3.1.0",
"eslint": "7.0.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-jest-dom": "2.1.0",
"eslint-plugin-react-hooks": "4.0.2",
"eslint-plugin-testing-library": "3.1.3",
"jest": "26.0.1",
"prettier": "2.0.5",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-test-renderer": "16.13.1",
"rollup": "2.10.5",
"yup": "0.29.0"
},
"browserslist": [
"defaults and >0.2%"
],
"keywords": [
"react",
"form",
"forms",
"hooks",
"validation",
"form-validation"
]
}