-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
89 lines (89 loc) · 2.39 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": "react-native-mask-text",
"version": "0.0.0",
"description": "A React Native and Expo library to mask text",
"keywords": [
"react",
"react-native",
"input",
"mask",
"expo",
"text-input"
],
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
"react-native": "lib/commonjs/index",
"source": "src/index",
"files": [
"lib/"
],
"repository": "https://github.com/akinncar/react-native-mask-text",
"author": "Akinn Rosa <[email protected]> (https://github.com/akinncar)",
"license": "MIT",
"bugs": {
"url": "https://github.com/akinncar/react-native-mask-text/issues"
},
"homepage": "https://github.com/akinncar/react-native-mask-text#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"lint": "eslint src/**/*.{ts,tsx}",
"lint:fix": "eslint src/**/*.{ts,tsx} --fix",
"test": "jest --maxWorkers=4",
"prepare": "bob build"
},
"dependencies": {
"bignumber.js": "^9.0.1"
},
"devDependencies": {
"@babel/plugin-transform-object-assign": "^7.14.5",
"@babel/plugin-transform-react-jsx-source": "^7.14.5",
"@testing-library/jest-native": "^4.0.1",
"@testing-library/react-native": "^7.2.0",
"@types/jest": "^26.0.23",
"@types/react-native": "^0.64.5",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"babel-jest": "^27.0.2",
"dotenv-cli": "^4.0.0",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.4",
"prettier": "^2.3.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "0.64.2",
"react-native-builder-bob": "^0.18.1",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"resolutions": {
"react-native/@jest/create-cache-key-function": "^27.0.2"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}