-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.46 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
{
"name": "awaitqueue",
"version": "3.0.2",
"description": "JavaScript utility to enqueue asynchronous tasks and run them sequentially one after another",
"author": "Iñaki Baz Castillo <[email protected]> (https://inakibaz.me)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/versatica/awaitqueue.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"engines": {
"node": ">=16"
},
"scripts": {
"prepare": "npm run typescript:build",
"typescript:build": "rm -rf lib && tsc",
"typescript:watch": "rm -rf lib && (tsc --watch --pretty)",
"lint": "eslint -c .eslintrc.js --max-warnings 0 src .eslintrc.js",
"test": "jest",
"release:check": "npm run typescript:build && npm run lint && npm run test"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"testRegex": "src/test\\.ts",
"transform": {
"^.*\\.ts$": [
"ts-jest",
{
"diagnostics": {
"ignoreCodes": [
"TS151001"
]
}
}
]
}
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.52.0",
"eslint-plugin-jest": "^28.8.3",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"dependencies": {
"debug": "^4.3.7"
}
}