This repository has been archived by the owner on Feb 28, 2024. It is now read-only.
forked from indigotech/react-masked-text
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.53 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
{
"name": "react-masked-text",
"version": "0.4.2",
"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/text-input-mask.js",
"scripts": {
"test": "BABEL_ENV=test jest",
"build": "BABEL_ENV=build rollup -c"
},
"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",
"dependencies": {
"tinymask": "1.0.2"
},
"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",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "23.6.0",
"moment": "2.22.2",
"jest": "23.6.0",
"react": "16.0.0",
"react-dom": "^16.5.2",
"react-test-renderer": "16.6.3",
"rollup": "0.66.2",
"rollup-plugin-babel": "4.0.3",
"rollup-plugin-copy": "0.2.3",
"rollup-plugin-node-resolve": "3.4.0"
}
}