-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.62 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "c8js",
"version": "0.8.0",
"description": "A modern, asynchronous Node.js API for c8",
"keywords": [
"api",
"c8",
"coverage",
"nodejs",
"v8"
],
"homepage": "https://origin-1.github.io/c8js/",
"license": "ISC",
"author": "Francesco Trotta <[email protected]> (https://github.com/fasttime)",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/origin-1/c8js.git"
},
"scripts": {
"build": "npm install && npm run build-no-install",
"build-no-install": "node dev/clean && npm run lint && node dev/coverage && node dev/make-docs",
"clean": "node dev/clean",
"coverage": "node dev/coverage",
"lint": "eslint . --format compact",
"make-docs": "node dev/make-docs",
"release": "git add CHANGELOG.md && npm version -f -m \"Release %s\"",
"test": "mocha --check-leaks --timeout=10000 test/*.spec.js"
},
"dependencies": {
"@types/istanbul-lib-coverage": "2",
"@types/node": ">=16",
"c8": ">=8 <=10.1.2",
"which": "5.0.0"
},
"devDependencies": {
"@origin-1/eslint-config": "latest",
"eslint": "latest",
"eslint-formatter-compact": "latest",
"mocha": "latest",
"ts-node": "latest",
"typedoc": "latest",
"typedoc-plugin-markdown": "latest",
"typescript": "latest"
},
"overrides": {
"c8": {
"foreground-child": "file:../_EXCLUDED_"
}
},
"engines": {
"node": ">=16"
},
"exports": {
".": {
"import": "./lib/c8js.js",
"require": "./lib/c8js.cjs"
},
"./package.json": "./package.json"
},
"type": "module",
"types": "lib/c8js.d.ts"
}