-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 883 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
{
"name": "c8-with-bundle",
"scripts": {
"build": "npm run build:main",
"build:main": "node build.mjs src/main/index.ts dist --treeshake",
"build:test": "node build.mjs src/test/index.ts dist --source-map",
"test": "node dist/index.mjs",
"c8": "npx c8 npm t",
"mcr": "npx mcr npm t"
},
"dependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/node": "^16.18.97",
"@types/tape": "^5.6.4",
"@vitrail/rollup-plugin-typescript": "^1.0.0",
"c8": "github:bcoe/c8#pull/521/head",
"commander": "^12.0.0",
"fs-extra": "^11.2.0",
"monocart-coverage-reports": "2.8",
"rollup": "^4.17.2",
"rollup-plugin-generate-package-json": "^3.2.0",
"source-map": "^0.7.4",
"tape": "^5.7.5",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
}
}