forked from bhrott/react-native-masked-text
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.78 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
{
"name": "react-native-masked-text",
"version": "2.0.3",
"description": "Text and TextInput with mask for React Native applications",
"licenses": [
{
"type": "MIT",
"url": "https://www.opensource.org/licenses/mit-license.php"
}
],
"main": "./dist/rnmt.js",
"scripts": {
"clean": "rimraf dist",
"test": "jest",
"build": "babel ./rnmt.js -d ./dist; babel ./lib/*.js -d ./dist/lib/; babel ./lib/masks/*.js -d ./dist/lib/masks; babel ./lib/internal-dependencies/*.js -d ./dist/lib/internal-dependencies;",
"prepublish": "npm test && npm run clean && npm run build",
"start": "node node_modules/react-native/local-cli/cli.js start",
"ios": "react-native run-ios"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grantbi/react-native-masked-text.git"
},
"keywords": [
"mask",
"text",
"textinput",
"react-native",
"custom",
"money"
],
"author": "Ben-hur Santos Ott",
"license": "ISC",
"bugs": {
"url": "https://github.com/benhurott/react-native-masked-text/issues"
},
"homepage": "https://github.com/benhurott/react-native-masked-text#readme",
"dependencies": {
"date-and-time": "0.14.2",
"tinymask": "1.0.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@types/react": "*",
"@types/react-native": "*",
"babel-jest": "^29.7.0",
"jest": "29.7.0",
"metro-react-native-babel-preset": "^0.77.0",
"react": "^18.0.0",
"react-native": "^0.72.2",
"react-test-renderer": "^18.0.0",
"rimraf": "2.6.2"
}
}