-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 KB
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
{
"name": "@wwdrew/react-native-numeric-textinput",
"version": "1.1.0",
"description": "A React Native TextInput that formats and displays only numeric inputs, including i18n currency formatting.",
"main": "lib/NumericTextInput.js",
"scripts": {
"prepack": "npm run prepack:babel && npm run prepack:flow",
"prepack:babel": "babel src/ -d lib",
"prepack:flow": "flow-copy-source src lib",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wwdrew/react-native-numeric-textinput.git"
},
"files": [
"lib"
],
"keywords": [
"react-native",
"textinput",
"input",
"numeric",
"formatted",
"currency"
],
"author": "Drew Miller",
"license": "MIT",
"bugs": {
"url": "https://github.com/wwdrew/react-native-numeric-textinput/issues"
},
"homepage": "https://github.com/wwdrew/react-native-numeric-textinput#readme",
"dependencies": {
"currency-codes": "^1.5.0",
"intl": "^1.2.5"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-transform-flow-strip-types": "^7.4.0",
"@babel/preset-react": "^7.0.0",
"@react-native-community/eslint-config": "0.0.4",
"eslint": "^5.16.0",
"flow-copy-source": "^2.0.3",
"metro-react-native-babel-preset": "^0.54.0"
}
}