forked from ACloudGuru/react-native-queue-asyncstorage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.44 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
{
"name": "react-native-queue-asyncstorage",
"version": "2.0.0",
"description": "A React Native Async Job Queue",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.ts",
"types": "lib/typescript/src/index.d.ts",
"source": "src/index.ts",
"files": [
"lib",
"src"
],
"scripts": {
"test": "./node_modules/.bin/jest --coverage && if [ \"$COVERALLS_ENV\" = \"production\" ]; then cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js; fi",
"lint": "eslint .",
"prepare": "bob build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/billmalarky/react-native-queue.git"
},
"keywords": [
"react",
"react-native",
"queue",
"job-queue",
"task-queue"
],
"author": "Reid Mayo",
"license": "MIT",
"bugs": {
"url": "https://github.com/billmalarky/react-native-queue/issues"
},
"homepage": "https://github.com/billmalarky/react-native-queue#readme",
"dependencies": {
"@react-native-async-storage/async-storage": "^1.21.0",
"lodash": "^4.17.21",
"react": "18.2.0",
"react-native": "0.73.4"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@react-native/babel-preset": "^0.73.21",
"@react-native/eslint-config": "^0.73.2",
"@react-native/metro-config": "^0.73.5",
"@react-native/typescript-config": "^0.74.0",
"@types/lodash": "^4.14.202",
"@types/react-test-renderer": "^18.0.7",
"babel-jest": "^29.6.3",
"coveralls": "^3.0.0",
"eslint": "^8.56.0",
"jest": "29.6.3",
"prettier": "2.8.8",
"react-native-builder-bob": "^0.23.2",
"should": "^13.2.3",
"typescript": "^5.3.3"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"jest": {
"preset": "react-native",
"moduleNameMapper": {
"^[./a-zA-Z0-9$_-]+\\.(bmp|gif|jpg|jpeg|png|psd|svg|webp|ttf|otf)$": "RelativeImageStub",
"^React$": "<rootDir>/node_modules/react"
},
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"<rootDir>/lib/"
],
"setupFiles": [
"<rootDir>/src/test/setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/e2e"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-native|react-navigation|@react-navigation|@storybook|@react-native-community)"
]
}
}