-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.74 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
{
"name": "async-await-queue",
"version": "2.1.4",
"description": "async/await simple priority queues",
"main": "cjs/index.cjs",
"module": "es6/index.mjs",
"types": "index.d.ts",
"scripts": {
"test": "mocha",
"c8": "node_modules/.bin/c8 mocha",
"lcov": "node_modules/.bin/c8 report --reporter=text-lcov > coverage/tests.lcov",
"codecov": "curl -s https://codecov.io/bash | bash",
"preversion": "npm test && eslint src/* test/*",
"prepare": "rollup -c && tsc --emitDeclarationOnly -d --declarationDir . src/index.ts",
"doc": "jsdoc -c .jsdoc.json es6/index.mjs -d docs",
"version": "npm run prepare && npm run doc && git add package.json docs",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmomtchev/Queue.git"
},
"keywords": [
"priority",
"queue",
"async",
"await",
"Promise"
],
"author": "Momtchil Momtchev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mmomtchev/Queue/issues"
},
"homepage": "https://github.com/mmomtchev/Queue",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^22.0.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"c8": "^10.1.1",
"chai": "^4.4.0",
"chai-as-promised": "^7.1.1",
"eslint": "^8.56.0",
"jsdoc": "^4.0.2",
"mocha": "^11.0.1",
"rollup": "^4.9.6",
"rollup-plugin-modify": "^3.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16"
}
}