-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1009 Bytes
/
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
{
"name": "use-input-value",
"version": "1.0.0",
"description": "React hook that allow us an easy validation and manage styles",
"main": "dist/useInputValue.js",
"module": "dist/useInputValue.m.js",
"umd:main": "dist/useInputValue.umd.js",
"source": "src/useInputValue.js",
"scripts": {
"build": "microbundle",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diego9497/useinput.git"
},
"keywords": [
"React",
"hooks",
"input",
"validation",
"styles"
],
"author": "Diego Aguilera <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/diego9497/useinput/issues"
},
"homepage": "https://github.com/diego9497/useinput#readme",
"peerdependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"microbundle": "^0.11.0"
}
}