-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
88 lines (88 loc) · 2.59 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
{
"name": "react-native-tableview-simple",
"description": "React Native component for TableView made with pure CSS",
"homepage": "https://github.com/Purii/react-native-tableview-simple",
"version": "4.4.1",
"author": "Patrick Böder <hello@patrickpuritscher.com>",
"scripts": {
"clean": "watchman watch-del-all && rm -rf node_modules/ && yarn cache clean && yarn",
"jest": "jest ./src/",
"eslint:ci": "eslint index.js ./src/",
"eslint:fix": "eslint index.js ./src/",
"test:ci": "yarn run eslint:ci && yarn run jest && yarn tsc --noEmit",
"tsc": "tsc --skipLibCheck",
"build:module": "yarn tsc --outDir ./lib/module --sourceMap",
"build:commonjs": "yarn tsc --module commonjs --outDir ./lib/commonjs --sourceMap",
"build": "rimraf ./lib && yarn build:module && yarn build:commonjs",
"release:prepare": "yarn build",
"release": "standard-version"
},
"main": "lib/commonjs/index.js",
"react-native": "src/index.ts",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"files": [
"/src",
"/lib",
"/README.md",
"/LICENSE"
],
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/example/"
],
"modulePathIgnorePatterns": [
"<rootDir>/example/"
]
},
"license": "MIT",
"keywords": [
"react-native",
"react-component",
"tableview",
"UITableView",
"crossplatform",
"ios",
"android"
],
"peerDependencies": {
"react": "*",
"react-native": ">=0.64"
},
"bugs": {
"url": "https://github.com/Purii/react-native-tableview-simple/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:Purii/react-native-tableview-simple.git"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/jest": "29.5.12",
"@types/react": "18.3.3",
"@types/react-native": "0.73.0",
"@types/react-test-renderer": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.12.0",
"@typescript-eslint/parser": "7.12.0",
"babel-jest": "29.7.0",
"babel-preset-react-native": "4.0.1",
"eslint": "8.57.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.2",
"husky": "9.0.11",
"jest": "29.7.0",
"lint-staged": "15.2.5",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "3.3.1",
"react": "18.3.1",
"react-native": "0.74.2",
"react-test-renderer": "18.3.1",
"rimraf": "5.0.7",
"standard-version": "9.5.0",
"typescript": "5.4.5"
}
}