-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.47 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@platformbuilders/react-native-masked-text",
"version": "1.0.6",
"licenses": [
{
"type": "MIT",
"url": "https://www.opensource.org/licenses/mit-license.php"
}
],
"license": "ISC",
"description": "",
"author": "Platform Builders <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/platformbuilders/react-native-masked-text.git"
},
"bugs": {
"url": "https://github.com/platformbuilders/react-native-masked-text/issues"
},
"homepage": "https://github.com/platformbuilders/react-native-masked-text#readme",
"keywords": [
"mask",
"text",
"textinput",
"react-native",
"custom",
"money"
],
"main": "./dist/rnmt.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"private": false,
"scripts": {
"clean": "rimraf dist",
"test": "jest",
"test:watch": "react-scripts test --env=jsdom",
"build": "babel ./rnmt.js ./lib/*.js ./lib/**/*.js -d ./dist",
"prepublish": "npm run clean && npm run build",
"start": "rollup -c -w",
"pretty": "prettier --config ./.prettierrc.js --write \"lib/**/*.{js,jsx,ts,tsx,json}\"",
"prepare": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"date-and-time": "0.14.2",
"tinymask": "1.0.2"
},
"peerDependencies": {
"react": ">=16.13.0",
"react-native": ">=0.63.2"
},
"devDependencies": {
"@types/react": "17.0.2",
"@types/react-native": "0.63.48",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"babel-cli": "6.26.0",
"babel-eslint": "^10.1.0",
"babel-jest": "26.6.3",
"babel-preset-react-native": "4.0.1",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-typescript": "^0.14.0",
"husky": "5.0.9",
"jest": "26.6.3",
"pinst": "^2.1.4",
"prettier": "^2.2.1",
"react-native-masked-text": "1.13.0",
"react-test-renderer": "17.0.1",
"rimraf": "3.0.2",
"typescript": "^4.1.5"
},
"jest": {
"preset": "react-native"
}
}