-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
113 lines (113 loc) · 3.23 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
112
113
{
"name": "@native-html/table-plugin",
"version": "5.3.1",
"description": "🔠 A WebView-based plugin to render tables in react-native-render-html",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/",
"types": "types/@native-html/table-plugin/index.d.ts",
"files": [
"lib",
"src",
"types",
"docs"
],
"scripts": {
"test": "yarn test:ts && yarn test:lint && yarn test:jest",
"test:jest": "jest src/",
"test:ts": "tsc --noEmit",
"test:lint": "eslint --ext ts,tsx src/",
"build": "yarn build:source && yarn build:defs && yarn build:doc",
"build:source": "bob build",
"build:defs": "api-extractor run --local --verbose",
"build:doc": "api-documenter markdown --input-folder temp --output-folder ./docs",
"prepack": "yarn run build"
},
"keywords": [
"react-native",
"react-native-render-html",
"html",
"table",
"plugins"
],
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime": "^7.15.4",
"@formidable-webview/ersatz": "^2.1.2",
"@formidable-webview/ersatz-testing": "^2.0.5",
"@microsoft/api-documenter": "^7.12.7",
"@microsoft/api-extractor": "7.13.1",
"@release-it/conventional-changelog": "^2.0.1",
"@testing-library/react-native": "^7.2.0",
"@tsconfig/react-native": "^1.0.3",
"@types/html-validator": "^5.0.1",
"@types/jest": "^26.0.24",
"@types/react": "^16.14.14",
"@types/react-native": "^0.63.53",
"@types/react-test-renderer": "^16.9.5",
"babel-jest": "^26.6.3",
"babel-plugin-inline-import": "^3.0.0",
"eslint": "^7.32.0",
"html-validator": "^5.1.17",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.64.0",
"metro-react-native-babel-transformer": "^0.64.0",
"react": "17.0.1",
"react-native": "0.64.2",
"react-native-builder-bob": "^0.17.1",
"react-native-render-html": "6.1.0",
"react-native-webview": "11.0.0",
"react-test-renderer": "17.0.2",
"release-it": "^14.3.0",
"typescript": "~4.4.2"
},
"dependencies": {
"@formidable-webview/webshell": "2.6.0",
"@native-html/plugins-core": "workspace:*",
"@types/prop-types": "^15.7.4",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-native": ">= 0.63.0",
"react-native-render-html": ">= 6.0.0-beta.0 || 6.x"
},
"author": "Jules Sam. Randolph <[email protected]> (https://github.com/jsamr)",
"homepage": "https://github.com/native-html/plugins/tree/master/packages/table-plugin#readme",
"license": "MIT",
"repository": {
"type": "git",
"directory": "packages/table-plugin",
"url": "git+ssh://[email protected]/native-html/plugins.git"
},
"publishConfig": {
"access": "public"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"module",
{
"babelrc": false
}
],
[
"commonjs",
{
"babelrc": false
}
],
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}