forked from bhrott/react-native-masked-text
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
64 lines (64 loc) · 1.79 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": "react-masked-text",
"version": "1.0.5",
"description": "Text and TextInput with mask for React applications, based on benhurott/react-native-masked-text.",
"licenses": [
{
"type": "MIT",
"url": "https://www.opensource.org/licenses/mit-license.php"
}
],
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "BABEL_ENV=test jest",
"build": "BABEL_ENV=build rollup -c --bundleConfigAsCjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emiyake/react-masked-text"
},
"keywords": [
"mask",
"text",
"textinput",
"react",
"vanilla-masker"
],
"author": "Edmar Miyake",
"license": "ISC",
"bugs": {
"url": "https://github.com/benhurott/react-masked-text/issues"
},
"homepage": "https://github.com/benhurott/react-masked-text#readme",
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"devDependencies": {
"@babel/core": "7.0.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-transform-destructuring": "7.0.0",
"@babel/plugin-transform-parameters": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/preset-react": "7.0.0",
"@rollup/plugin-terser": "0.4.4",
"@testing-library/jest-dom": "6.1.3",
"@testing-library/react": "12.1.2",
"@types/jest": "29.5.4",
"@types/react": "18.2.22",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "23.6.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"moment": "2.22.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup": "3.29.2",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-ts": "3.4.5",
"ts-jest": "29.1.1",
"typescript": "5.2.2"
}
}