-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 915 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 915 Bytes
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
{
"description": "General purpose utilities packed into a single library",
"type": "module",
"scripts": {
"test": "mocha",
"coverage": "nyc npm run test"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@tsconfig/node20": "^20.1.4",
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.6",
"@types/sinon": "^17.0.3",
"chai": "^4.3.10",
"mocha": "^10.4.0",
"nyc": "^17.0.0",
"sinon": "^18.0.0",
"ts-node": "^10.9.2"
},
"volta": {
"node": "20.11.1",
"npm": "10.5.0"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"include": [
"src/**/*.ts"
],
"branches": "100",
"lines": "100",
"functions": "100",
"statements": "100",
"check-coverage": true,
"reporter": [
"text",
"lcov"
]
},
"peerDependencies": {
"typescript": "^5.6.2"
}
}