-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "borp",
"version": "0.19.0",
"type": "module",
"description": "node:test wrapper with TypeScript support",
"main": "borp.js",
"bin": {
"borp": "borp.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mcollina/borp"
},
"scripts": {
"clean": "rm -rf fixtures/*/dist .test-*",
"lint": "standard | snazzy",
"unit": "node borp.js --ignore \"fixtures/**/*\" -C --coverage-exclude \"fixtures/**/*\" --coverage-exclude \"test*/**/*\"",
"test": "npm run clean ; npm run lint && npm run unit"
},
"keywords": [],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"devDependencies": {
"@matteo.collina/tspl": "^0.1.0",
"@reporters/silent": "^1.2.4",
"@sinonjs/fake-timers": "^13.0.2",
"@types/node": "^22.2.0",
"desm": "^1.3.0",
"semver": "^7.6.3",
"snazzy": "^9.0.0",
"standard": "^17.1.0",
"typescript": "^5.3.2"
},
"dependencies": {
"@reporters/github": "^1.5.4",
"c8": "^10.0.0",
"execa": "^9.3.0",
"find-up": "^7.0.0",
"glob": "^10.3.10",
"yaml": "^2.5.1"
}
}