-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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
45
46
{
"name": "@formidablejs/queues",
"version": "0.0.8",
"main": "lib/index.js",
"description": "Queue worker for the Formidable Framework",
"author": "Donald Pakkies",
"license": "MIT",
"types": "types/index.d.ts",
"bugs": "https://github.com/formidablejs/queues/issues",
"homepage": "https://www.formidablejs.org/docs/queues",
"repository": "https://github.com/formidablejs/queues",
"publisher": "formidable/Package.js",
"files": [
"formidable",
"lib",
"types"
],
"scripts": {
"build": "babel src --out-dir lib --extensions \".ts\" --source-maps inline",
"test": "jest --detectOpenHandles --no-cache --verbose",
"prepare": "npm run build && npm run test"
},
"peerDependencies": {
"@formidablejs/framework": "*",
"@formidablejs/stubs": "*"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@formidablejs/framework": "^0.13.16",
"@formidablejs/stubs": "^0.4.0",
"@jest/globals": "^29.4.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"esbuild": "^0.17.5",
"jest": "^29.3.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"dependencies": {
"bee-queue": "^1.7.1",
"core-js": "^3.27.2"
}
}