-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.76 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
{
"name": "promise-priority-queue",
"version": "6.0.4",
"description": "",
"main": "dist/index.js",
"scripts": {
"prepare": "./node_modules/.bin/patch-package && ./node_modules/.bin/husky install",
"test": "./node_modules/.bin/tape --enable-source-maps --unhandled-rejections=strict dist/test/integration/*.js",
"dist": "rm -rf dist/ && npx tsc --build tsconfig.prod.json",
"release": "npm run dist && npx standard-version -a",
"generate-docs": "npx typedoc --excludePrivate --hideGenerator --includeVersion --readme ./README.md --out docs index.ts lib"
},
"type": "commonjs",
"author": "Jørgen Grimnes",
"bugs": "https://github.com/jorgenkg/promise-priority-queue/issues",
"keywords": [
"priority queue",
"promise queue",
"promisified queue",
"bucket queue"
],
"license": "MIT",
"engines": {
"node": ">=5"
},
"engineStrict": true,
"files": [
"dist/lib",
"dist/index*"
],
"repository": {
"type": "git",
"url": "https://github.com/jorgenkg/promise-priority-queue.git"
},
"devDependencies": {
"@commitlint/cli": "16.3.0",
"@commitlint/config-conventional": "16.2.4",
"@sinonjs/fake-timers": "9.1.2",
"@types/debug": "4.1.12",
"@types/node": "17.0.45",
"@types/sinonjs__fake-timers": "8.1.5",
"@types/tape": "4.13.4",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"changelog-parser": "2.8.1",
"eslint": "8.57.0",
"eslint-plugin-sort-imports-es6-autofix": "0.6.0",
"husky": "7.0.4",
"patch-package": "6.5.1",
"standard-version": "9.5.0",
"strict-event-emitter-types": "2.0.0",
"tape": "5.6.3",
"typedoc": "0.23.28",
"typedoc-plugin-missing-exports": "0.23.0",
"typescript": "4.8.4"
}
}