-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1009 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
41
42
43
44
{
"author": "c.neff",
"license": "MIT",
"keywords": [
"queue",
"jobs",
"tasks",
"job",
"task"
],
"repository": {
"type": "git",
"url": "https://github.com/o0sh4d0w0o/minimalist-queue.git"
},
"name": "minimalist-queue",
"version": "1.0.4",
"description": "A node minimalist queue module",
"main": "index.js",
"files": [
"index.js",
"types/index.d.ts"
],
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:coveralls": "jest --coverage && coveralls < coverage/lcov.info"
},
"types": "types/index.d.ts",
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"engines": {
"node": ">= 12"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"coveralls": "^3.1.1",
"jest": "^27.4.3",
"ts-jest": "^27.1.0"
}
}