-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.62 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
{
"name": "@technogise/rn-background-queue-processor-realm-adapter",
"version": "1.0.0",
"description": "This package is designed for [rn-background-queue-processor](https://github.com/technogise/rn-background-queue-processor) to store Jobs in persistent Realm storage.",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint . --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/technogise/rn-background-queue-processor-realm-adapter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/technogise/rn-background-queue-processor-realm-adapter/issues"
},
"homepage": "https://github.com/technogise/rn-background-queue-processor-realm-adapter#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@react-native-community/eslint-config": "^0.0.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "8.2.6",
"babel-jest": "^24.8.0",
"babel-preset-airbnb": "2.5.2",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"eslint-watch": "^4.0.2",
"jest": "^25.1.0",
"metro-react-native-babel-preset": "^0.55.0"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"directories": {
"test": "tests"
},
"keywords": [
"react",
"react-native",
"realm",
"persistent",
"queue",
"job-queue",
"job"
],
"dependencies": {
"realm": "^5.0.3",
"underscore": "^1.10.2"
}
}