forked from 1fabiopereira/react-native-pdf-extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.99 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@dkdps/react-native-pdf-extractor",
"version": "0.2.7",
"description": "This library allows you to extract pdfs file data using matches specifics patterns.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"react-native": "index.ts",
"source": "index.ts",
"scripts": {
"build": "bob build",
"docs": "cd website && yarn install && yarn start",
"lint": "eslint \"src/**/*.{js,ts,tsx}\" \"src/**/**/*.{js,ts,tsx}\" --fix",
"test": "jest --coverage --detectOpenHandles",
"type-check": "tsc --noEmit",
"sonar": "sonar-scanner -Dsonar.host.url=https://sonarcloud.io",
"circular": "madge --circular index.ts --no-spinner --warning"
},
"keywords": [
"react-native",
"android",
"pdf",
"extract"
],
"repository": "https://github.com/dkdps/react-native-pdf-extractor",
"author": "Fábio Pereira <[email protected]> (https://github.com/1fabiopereira)",
"license": "MIT",
"bugs": {
"url": "https://github.com/1fabiopereira/react-native-pdf-extractor/issues"
},
"homepage": "https://1fabiopereira.github.io/react-native-pdf-extractor",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.2",
"@react-native-community/eslint-config": "^3.0.2",
"@release-it/conventional-changelog": "^7.0.0",
"@testing-library/jest-native": "^5.4.2",
"@testing-library/react-native": "^12.1.2",
"@types/jest": "^29.1.2",
"@types/react": "^18.0.12",
"@types/react-native": "0.67.8",
"commitlint": "^17.0.2",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"madge": "^5.0.1",
"prettier": "^2.6.2",
"react": "18.1.0",
"react-native": "0.68.2",
"react-native-builder-bob": "^0.18.2",
"react-native-modal": "^13.0.1",
"react-test-renderer": "^18.2.0",
"release-it": "^16.1.3",
"sonar-scanner": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-modal": "*"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native-community",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}