-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.82 KB
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-otp-input-hook",
"source": "lib/index.ts",
"version": "1.0.10",
"description": "React hook to build OTP inputs",
"types": "./dist/types/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"license": "MIT",
"keywords": [
"otp",
"input",
"code",
"passcode",
"hook",
"component",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/supercoder123/react-otp-input-hook.git"
},
"bugs": {
"url": "https://github.com/supercoder123/react-otp-input-hook/issues"
},
"homepage": "https://github.com/supercoder123/react-otp-input-hook",
"scripts": {
"np": "np",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"build": "npm run build:cjs && npm run build:esm",
"build-ts": "tsc",
"build:cjs": "tsc -p tsconfig.json --module commonjs --outDir dist/cjs --target es5",
"build:esm": "tsc -p tsconfig.json --module esNext --outDir dist/esm --target es6",
"mbuild": "microbundle --no-sourcemap --formats=esm,cjs",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"author": "Ashley Fernandes",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.4",
"@types/react": "^18.0.17",
"babel-jest": "^29.3.1",
"coveralls": "^3.1.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"microbundle": "^0.15.1",
"np": "^7.6.3",
"ts-jest": "^29.0.3",
"typescript": "^4.8.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"files": [
"dist"
]
}