-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.99 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 2.99 KB
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
{
"name": "react-native-nested-listview",
"version": "1.0.0",
"description": "Nested Listview for React native",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"CHANGELOG.md"
],
"scripts": {
"test": "jest",
"lint": "eslint ./src",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"build:cjs": "tsc -p tsconfig.build.json --module node16 --moduleResolution node16 --outDir dist/cjs",
"build:esm": "tsc -p tsconfig.build.json --module esnext --outDir dist/esm && node scripts/fix-esm-imports.mjs",
"build": "yarn clean && yarn build:cjs && yarn build:esm",
"check-build": "node scripts/check-build.mjs",
"check-package": "attw --pack .",
"prepublishOnly": "yarn build",
"prettier-check": "prettier --check 'src/**/*.{ts,tsx}'",
"prettier-format": "prettier --write 'src/**/*.{ts,tsx}'",
"check-all": "yarn lint && yarn type-check && yarn test",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fjmorant/react-native-nested-listview.git"
},
"peerDependencies": {
"react": ">=17",
"react-native": "*"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@babel/core": "^7.29.7",
"@babel/runtime": "^7.29.7",
"@commitlint/cli": "^21.2.3",
"@commitlint/config-conventional": "^21.2.3",
"@react-native/babel-preset": "^0.87.1",
"@react-native/eslint-config": "^0.87.1",
"@react-native/jest-preset": "^0.87.1",
"@testing-library/react-native": "^14.0.1",
"@types/jest": "^30.0.0",
"@types/react": "^19.1.1",
"babel-jest": "^30.5.2",
"eslint": "^9.39.5",
"eslint-plugin-prettier": "^5.5.6",
"husky": "^9.1.7",
"jest": "^30.5.2",
"prettier": "^3.9.9",
"react": "^19.3.0",
"react-native": "^0.87.1",
"test-renderer": "^1.3.0",
"typescript": "^5.9.3"
},
"keywords": [
"react",
"native",
"list",
"nested"
],
"author": "Javier Morant",
"license": "MIT",
"bugs": {
"url": "https://github.com/fjmorant/react-native-nested-listview/issues"
},
"homepage": "https://github.com/fjmorant/react-native-nested-listview#readme",
"jest": {
"preset": "@react-native/jest-preset",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePathIgnorePatterns": [
"<rootDir>/examples/"
],
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/",
"<rootDir>/examples/",
"<rootDir>/lib/",
"<rootDir>/dist/"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"packageManager": "yarn@1.22.22"
}