-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.64 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
{
"name": "@lunrdigital/use-form",
"version": "2.0.2",
"description": "React hook for simple form management",
"source": "src/index.js",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"prepublish": "npm run build",
"build": "rm -rf dist && NODE_ENV=production microbundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lunr-digital/useForm.git"
},
"keywords": [
"react",
"hooks",
"form"
],
"files": [
"dist"
],
"author": "Lunr Digital",
"license": "ISC",
"bugs": {
"url": "https://github.com/lunr-digital/useForm/issues"
},
"homepage": "https://github.com/lunr-digital/useForm#readme",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@lunrdigital/eslint-config": "1.0.1",
"@testing-library/react": "^9.1.4",
"@testing-library/react-hooks": "^2.0.1",
"babel-eslint": "10.x",
"babel-preset-react-app": "^9.0.1",
"eslint": "6.x",
"eslint-config-airbnb": "18.x",
"eslint-config-prettier": "3.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jest": "22.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-prettier": "3.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "1.x",
"jest": "^24.9.0",
"microbundle": "^0.11.0",
"prettier": "1.x",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.9.0"
},
"peerDependencies": {
"react": "16.x",
"react-dom": "16.x"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/setup-tests.js"
]
},
"dependencies": {
"@babel/runtime": "^7.6.0",
"@testing-library/jest-dom": "^4.1.0"
}
}