-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.04 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": "restful-queue",
"version": "1.0.8",
"description": "A queue for service workers which send requests to a restful API",
"main": "index.js",
"type": "module",
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage",
"jsdoc": "jsdoc2md index.js > docs/API.md && jsdoc2md --private index.js > docs/API\\ -\\ Internal.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucas42/restful-queue.git"
},
"keywords": [
"Service",
"Worker",
"Rest",
"API",
"IndexDB"
],
"author": "Luke Blaney",
"bugs": {
"url": "https://github.com/lucas42/restful-queue/issues"
},
"homepage": "https://github.com/lucas42/restful-queue#readme",
"dependencies": {
"idb": "^8.0.0"
},
"devDependencies": {
"fake-indexeddb": "^6.0.0",
"jest": "^29.7.0",
"jsdoc-to-markdown": "^9.0.0"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"setupFiles": [
"fake-indexeddb/auto"
]
}
}