-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.98 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
{
"name": "react-native-date-time-spinner",
"description": "A simple, flexible, performant spinner-based date and time picker for React Native apps. Pick day, month, and year with a native-feeling scroll experience.",
"author": {
"name": "Jasper Vercammen",
"url": "https://github.com/jaspervercammen"
},
"license": "MIT",
"version": "1.1.1",
"main": "dist/commonjs/index.js",
"module": "dist/module/index.js",
"types": "dist/typescript/index.d.ts",
"typings": "dist/typescript/index.d.ts",
"files": [
"dist/",
"src/index.ts",
"react-native.config.js",
"README.md",
"LICENSE"
],
"packageManager": "yarn@4.11.0",
"workspaces": {
"packages": [
"examples/*"
]
},
"scripts": {
"setup": "yarn install",
"start": " yarn workspace example-expo start",
"test": "jest --forceExit --silent",
"build": "bob build",
"clean": "rm yarn.lock && rm -rf ./node_modules && yarn install",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --ext .ts,.tsx . --fix",
"ts": "tsc --noEmit",
"prepare": "yarn build"
},
"homepage": "https://github.com/jaspervercammen/react-native-date-time-spinner",
"bugs": {
"url": "https://github.com/jaspervercammen/react-native-date-time-spinner/issues"
},
"repository": {
"name": "GitHub",
"type": "git",
"url": "https://github.com/JasperVercammen/react-native-date-time-spinner"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-native": ">=0.72.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@testing-library/react-native": "^12.0.0",
"@types/jest": "^29.0.0",
"@types/react": ">=18.2.0",
"@types/react-native": "0.72.0",
"@types/react-test-renderer": ">=18.2.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"babel-jest": "^29.6.2",
"eslint": "^8.44.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"jest": "^29.0.0",
"metro-react-native-babel-preset": "^0.71.1",
"prettier": "2.8.8",
"react": "18.2.0",
"react-native": "0.72.0",
"react-native-builder-bob": "^0.18.3",
"react-test-renderer": "18.2.0",
"typescript": "^4.7.4"
},
"react-native-builder-bob": {
"source": "src",
"output": "dist",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"eslintIgnore": [
"node_modules/",
"dist/"
]
}