-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 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
50
{
"name": "sync-wait-group",
"version": "1.3.0",
"description": "A port of golang sync.WaitGroup",
"keywords": [],
"author": "Raynos <raynos2@gmail.com>",
"repository": "git://github.com/Raynos/sync-wait-group.git",
"main": "index.js",
"homepage": "https://github.com/Raynos/sync-wait-group",
"bugs": {
"url": "https://github.com/Raynos/sync-wait-group/issues",
"email": "raynos2@gmail.com"
},
"contributors": [
{
"name": "Raynos"
}
],
"binDependencies": {
"tsdocstandard": "16.1.0",
"type-coverage": "2.14.2",
"typescript": "4.0.5"
},
"devDependencies": {
"@pre-bundled/tape": "5.0.0",
"@types/node": "13.13.4",
"collapsed-assert": "1.0.3",
"npm-bin-deps": "1.10.1"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/Raynos/sync-wait-group/raw/master/LICENSE"
}
],
"typeCoverage": {
"detail": true,
"strict": true,
"ignoreUnread": true,
"ignoreCatch": true,
"atLeast": 100,
"project": "jsconfig.json"
},
"scripts": {
"tsc": "npr tsc -p jsconfig.json --maxNodeModuleJsDepth 0",
"lint": "npr tsdocstandard -v",
"test": "npm run tsc && npm run lint && node test/index.js && npr type-coverage"
},
"ngen-version": "5.1.0"
}