-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 927 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 927 Bytes
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
{
"name": "offline-queue-manager",
"version": "0.4.6",
"description": "A package for managing a queue of API requests.",
"main": "index.js",
"scripts": {
"test": "jest",
"lint-staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taskful/offline-queue-manager.git"
},
"keywords": [
"api",
"queue",
"network",
"offline",
"fetch",
"manager",
"redux"
],
"author": "Taskful, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/taskful/offline-queue-manager/issues"
},
"homepage": "https://github.com/taskful/offline-queue-manager#readme",
"dependencies": {
"uuid": "^3.3.2"
},
"devDependencies": {
"eslint": "^5.6.0",
"eslint-config-taskful": "^0.1.0",
"lint-staged": "^7.3.0",
"pre-commit": "^1.2.2"
},
"lint-staged": {
"*.js": "eslint"
},
"pre-commit": "lint-staged"
}