forked from sanniassin/react-input-mask
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
105 lines (105 loc) · 3.43 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@mona-health/react-input-mask",
"description": "(yet another) Masked input component for React",
"version": "3.0.3",
"homepage": "https://github.com/mona-health/react-input-mask",
"license": "MIT",
"author": "Nikita Lobachev <sanniassin@gmail.com>",
"contributors": [
"Ian Channing <ian_channing@hotmail.com>"
],
"keywords": [
"react",
"input",
"mask",
"masked",
"react-component"
],
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/plugin-transform-proto-to-assign": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"babel-loader": "^9.1.3",
"babel-plugin-dev-expression": "^0.2.2",
"babel-plugin-minify-dead-code-elimination": "^0.5.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"chai": "^4.2.0",
"console-polyfill": "^0.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.0.11",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.1",
"lint-staged": "^15.2.2",
"mocha": "^10.3.0",
"prettier": "^3.2.5",
"puppeteer": "^22.3.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "^5.0.5",
"rollup": "^4.12.0",
"typescript": "^5.3.3",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2"
},
"main": "index.js",
"types": "./dist/index.js",
"files": [
"lib",
"dist"
],
"lint-staged": {
"*.js": "eslint"
},
"scripts": {
"clean": "rimraf lib dist",
"build": "cross-env BABEL_ENV=rollup rollup -c",
"start": "cross-env BABEL_ENV=test NODE_ENV=development webpack-dev-server",
"prepare": "husky && npm run lint && npm test && npm run clean && npm run types && npm run build",
"lint": "eslint ./src ./tests ./*.js",
"lint-fix": "eslint --fix ./src ./tests ./*.js",
"test": "npm run build && npm run test:input && npm run test:server-render && npm run test:build",
"test:input": "cross-env NODE_ENV=test BABEL_ENV=test karma start",
"test:server-render": "cross-env BABEL_ENV=test mocha --require @babel/register ./tests/server-render",
"test:build": "cross-env BABEL_ENV=test mocha --require @babel/register ./tests/build",
"types": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/mona-health/react-input-mask.git"
},
"dependencies": {
"invariant": "^2.2.4",
"prop-types": "^15.7.2",
"warning": "^4.0.3"
}
}