forked from inkitt/react-native-queue-asyncstorage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "react-native-queue",
"version": "1.2.1",
"description": "A React Native Job Queue",
"main": "index.js",
"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 ."
},
"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": {
"lodash": "^4.17.11",
"promise-reflect": "^1.1.0",
"react-native-uuid": "^2.0.1",
},
"devDependencies": {
"babel-eslint": "^8.0.3",
"babel-jest": "^21.2.0",
"babel-preset-react-native": "^4.0.0",
"coveralls": "^3.0.0",
"eslint": "^4.12.1",
"jest": "^21.2.1",
"react": "16.6.3",
"react-native": "0.59.10",
"should": "^13.1.3",
"@react-native-community/async-storage": "^1.6.1"
}
}