-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 930 Bytes
/
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
{
"name": "@reginaldlee/taskqueue",
"version": "2.0.2",
"description": "A js queue for tasks running one by one.",
"main": "lib/TaskQueue.js",
"types": "lib/TaskQueue.d.ts",
"directories": {
"src": "src",
"lib": "lib",
"test": "test"
},
"files": ["lib"],
"scripts": {
"test": "mocha",
"prepare": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReinaldLee/TaskQueue.git"
},
"keywords": [
"queue"
],
"author": "ReginaldLee",
"license": "MIT",
"bugs": {
"url": "https://github.com/ReinaldLee/TaskQueue/issues"
},
"homepage": "https://github.com/ReinaldLee/TaskQueue#readme",
"devDependencies": {
"@types/chai": "^4.2.16",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"mocha": "^8.3.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}