-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.42 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
47
48
49
50
51
52
53
{
"name": "@mdaemon/process-queue",
"version": "1.2.0",
"type": "module",
"description": "A class for pushing objects to a queue and getting the next object from the queue to be processed",
"main": "dist/processQueue.umd.js",
"module": "dist/processQueue.mjs",
"browser": "dist/pprocessQueue.umd.js",
"common": "dist/processQueue.cjs",
"typings": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"dev-test": "jest --watchAll",
"build": "rollup -c",
"dev": "rollup -c -w",
"pub": "npm run build && npm run test && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mdaemon-technologies/process-queue.git"
},
"keywords": [
"queue",
"process",
"process queue"
],
"author": {
"name": "MDaemon Technologies, Ltd.",
"email": "[email protected]",
"url": "https://www.mdaemon.com"
},
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/mdaemon-technologies/process-queue/issues"
},
"homepage": "https://github.com/mdaemon-technologies/process-queue#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"rollup": "^4.20.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"tslib": "^2.6.3"
}
}