-
Notifications
You must be signed in to change notification settings - Fork 249
/
package.json
58 lines (58 loc) · 1.67 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-native-masked-text",
"version": "1.13.0",
"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 ./lib/*.js ./lib/**/*.js -d ./dist",
"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/benhurott/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.9.0",
"tinymask": "1.0.2"
},
"devDependencies": {
"@types/react-native": "*",
"@types/react": "*",
"babel-cli": "6.26.0",
"rimraf": "2.6.2",
"react": "16.3.1",
"react-native": "0.55.4",
"babel-jest": "23.4.2",
"babel-preset-react-native": "4.0.0",
"jest": "23.5.0",
"react-test-renderer": "16.3.1",
"react-native-masked-text": "1.9.0"
},
"jest": {
"preset": "react-native"
}
}