-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.52 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": "use-controlled-input-number",
"version": "1.0.1",
"description": "React hook to turn numeric input behavior into pretty much what you expect",
"author": "David Asensio Cañas <david.asensio@icloud.com>",
"homepage": "https://github.com/d-asensio/use-controlled-input-number#readme",
"repository": {
"type": "git",
"url": "https://github.com/d-asensio/use-controlled-input-number"
},
"bugs": {
"url": "https://github.com/d-asensio/use-controlled-input-number/issues"
},
"license": "MIT",
"keywords": [
"react",
"hook",
"handle",
"controlled",
"input",
"field",
"type",
"number"
],
"engines": {
"node": ">=10",
"npm": ">=6"
},
"files": [
"dist"
],
"main": "dist/use-controlled-input-number.cjs.js",
"module": "dist/use-controlled-input-number.esm.js",
"scripts": {
"build": "kcd-scripts build --bundle",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "kcd-scripts test --coverage --verbose",
"test:watch": "yarn test --watch"
},
"standard": {
"env": [
"jest",
"browser"
]
},
"dependencies": {
"@babel/runtime": "^7.10.5"
},
"peerDependencies": {
"react": ">=16.12"
},
"devDependencies": {
"@babel/cli": "7.12.8",
"@babel/core": "7.12.9",
"@babel/preset-env": "7.12.7",
"@testing-library/react-hooks": "3.4.1",
"kcd-scripts": "6.7.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-test-renderer": "16.13.1",
"standard": "16.0.3"
}
}