-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
38 lines (38 loc) · 893 Bytes
/
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
{
"scripts": {
"build": "node tools/run-release.js",
"test": "c8 --reporter=lcov --reporter=json --all --src=tools ava"
},
"private": true,
"type": "module",
"engines": {
"node": ">=16"
},
"devDependencies": {
"@types/fancy-log": "^1.3.1",
"@types/mri": "^1.1.1",
"@types/node": "^16.10.3",
"@types/semver": "^7.3.8",
"@types/tar-stream": "^2.2.1",
"@types/tmp": "^0.2.1",
"@types/turndown": "^5.0.1",
"check-code-coverage": "^1.10.0"
},
"dependencies": {
"assert": "^2.0.0",
"ava": "^3.15.0",
"c8": "^7.11.0",
"chalk": "^4.1.2",
"fancy-log": "^1.3.3",
"fast-glob": "^3.2.7",
"get-stdin": "^9.0.0",
"json5": "^2.2.0",
"mri": "^1.2.0",
"node-fetch": "^3.0.0",
"semver": "^7.3.5",
"tar-stream": "^2.2.0",
"tmp": "^0.2.1",
"turndown": "^7.1.1",
"typescript": "^4.4.3"
}
}