-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.99 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "qyu",
"description": "A general-purpose asynchronous job queue for Node.js",
"version": "2.1.3",
"license": "MIT",
"author": "Dor Shtaif <dorshtaif@gmail.com>",
"keywords": [
"queue",
"job",
"job-queue",
"promise",
"async",
"async-await",
"throttle",
"async pool"
],
"repository": {
"type": "git",
"url": "https://github.com/shtaif/Qyu"
},
"bugs": "https://github.com/shtaif/Qyu/issues",
"engineStrict": true,
"engines": {
"node": ">=10.24"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
"sideEffects": false,
"scripts": {
"test": "ts-mocha -p ./tsconfig-tests.json",
"test:dev": "ts-mocha --watch -p ./tsconfig-tests.json",
"code-check": "prettier --check \"./src/**/*.{ts,js}\" && eslint ./src --cache && pnpm run test --type-check && tsc --noEmit",
"build": "rm -rf ./dist && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && node ./scripts/mark-dist-dirs-package-module-type.js",
"build-check": "tsc --noEmit -p ./tsconfig.json",
"prepack": "pnpm run build"
},
"files": [
"dist"
],
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-subset": "^1.3.5",
"@types/mocha": "^9.1.1",
"@types/node": "^22.13.1",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"chai": "^4.3.8",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"mocha": "^10.8.2",
"prettier": "^3.5.0",
"sinon": "^19.0.2",
"ts-mocha": "^10.0.0",
"typescript": "^5.7.3"
}
}