-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.22 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.22 KB
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
{
"name": "wait-queue",
"version": "1.1.4",
"description": "A javascript wait queue object handle infinity loop tasks more efficiently (using ES6 class and promise)",
"main": "dist/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsc --noEmit false",
"lint": "eslint . --fix",
"test": "jest",
"benchmark": "node ./benchmark/",
"coverage": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flarestart/wait-queue.git"
},
"keywords": [
"await",
"queue",
"tasks"
],
"author": "flarestart",
"license": "MIT",
"bugs": {
"url": "https://github.com/flarestart/wait-queue/issues"
},
"homepage": "https://github.com/flarestart/wait-queue#readme",
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/node": "^10.12.18",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"benchmark": "^2.1.4",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"jest": "^25.4.0",
"ts-jest": "^25.4.0",
"typescript": "^3.2.2"
},
"files": [
"dist",
"LICENSE",
"README.MD"
]
}