forked from inkitt/react-native-queue-asyncstorage
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.64 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.64 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
{
"name": "react-native-queue",
"version": "1.2.1",
"description": "A React Native Job Queue",
"main": "index.js",
"scripts": {
"test": "jest --coverage --watchAll",
"lint": "eslint ."
},
"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-community/async-storage": "^1.2.2",
"@types/jest": "^24.0.11",
"lodash": "^4.17.11",
"promise-reflect": "^1.1.0",
"react-native-uuid": "^1.4.9",
"realm": "^2.25.0"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/runtime": "^7.4.2",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.5.0",
"babel-preset-react-native": "^4.0.1",
"coveralls": "^3.0.3",
"eslint": "^5.15.3",
"eslint-plugin-jest": "^22.4.1",
"jest": "^24.5.0",
"metro-react-native-babel-preset": "^0.53.1",
"mock-async-storage": "^2.0.5",
"react": "16.8.5",
"react-native": "0.59.2",
"should": "^13.2.3"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"/node_modules/(?!mock-async-storage)/"
],
"transform": {
"^.+\\.test.js$": "babel-jest"
},
"testMatch": [
"**/__tests__/**/*.js?(x)",
"**/?(*.)(spec|test).js?(x)",
"**/__tests__/**/*.ts?(x)",
"**/?(*.)(spec|test).ts?(x)"
]
}
}