-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.39 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
{
"name": "@jpwilliams/waitgroup",
"version": "2.1.2",
"description": "A tiny version of Golang's WaitGroup with typings, promises, and zero dependencies.",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib",
"test": "jest --coverage",
"test:watch": "jest --watchAll",
"build": "tsc",
"build:watch": "onchange 'src/**/*' -- npm run build"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jpwilliams/waitgroup.git"
},
"keywords": [
"waitgroup",
"wait",
"group",
"async",
"promises",
"golang",
"types",
"typings",
"typescript"
],
"author": "Jack Williams <@jpwilliams>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jpwilliams/waitgroup/issues"
},
"homepage": "https://github.com/jpwilliams/waitgroup#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.26",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"onchange": "^7.1.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
}
}