-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
79 lines (79 loc) · 3.06 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-verification-input",
"version": "4.2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/andreaswilli/react-verification-input.git",
"description": "Customizable, masked input, which can be used for all sorts of codes.",
"author": "Andreas Willi",
"license": "MIT",
"scripts": {
"build": "webpack",
"build:prod": "webpack --mode=production",
"serve": "webpack --watch --mode=production",
"lint": "eslint src",
"test": "jest --coverage",
"docs": "yarn build:prod && cd docs-src && BASE_PATH=/react-verification-input yarn next build && yarn next export -o ../docs && cd - && touch docs/.nojekyll",
"bump-major": "npm version major",
"bump-minor": "npm version minor",
"bump-patch": "npm version patch",
"bump-premajor": "npm version premajor --preid beta",
"bump-preminor": "npm version preminor --preid beta",
"bump-prepatch": "npm version prepatch --preid beta",
"bump-prerelease": "npm version prerelease --preid beta",
"push-tags": "git push --follow-tags",
"publish-beta": "npm publish --tag beta"
},
"files": [
"lib/"
],
"peerDependencies": {
"react": "16.8.0 - 19.x.x || >=19.0.0-rc",
"react-dom": "16.8.0 - 19.x.x || >=19.0.0-rc"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.23.2",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.22.17",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.22.15",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@eslint/js": "^9.16.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.0.0",
"classnames": "^2.2.5",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.7.1",
"eslint": "^9.16.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"regenerator-runtime": "^0.14.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.0.0"
},
"dependencies": {}
}