-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 796 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 796 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
{
"name": "@tapjs/node-test-example",
"version": "1.0.0",
"description": "Showing interoperability between node --test and tap",
"type": "module",
"devDependencies": {
"tap": "^18.4.2",
"typescript": "5.2"
},
"scripts": {
"test:tap": "tap",
"test:node": "node --test",
"test:mix": "tap --coverage-report=none --allow-incomplete-coverage test/tap.test.js; NODE_V8_COVERAGE=.tap/coverage node --test test/node.test.js; tap report",
"test:cross": "tap --coverage-report=none --allow-incomplete-coverage test/node.test.js; NODE_V8_COVERAGE=.tap/coverage node --test test/tap.test.js; tap report",
"test": "npm run test:tap ; npm run test:node"
},
"engines": {
"node": ">=20.6.1"
},
"tap": {
"plugin": [
"!@tapjs/typescript"
]
}
}