-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
34 lines (34 loc) · 991 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
{
"name": "test",
"version": "3.3.0",
"description": "Node.js 18's node:test, as an npm package",
"license": "MIT",
"repository": "nodejs/node-core-test",
"main": "./lib/test.js",
"types": "./lib/test.d.ts",
"bin": {
"node--test": "./bin/node--test.js",
"node--test-only": "./bin/node--test-only.js",
"node--test-name-pattern": "./bin/node--test-name-pattern.js",
"test": "./bin/node-core-test.js"
},
"imports": {
"#internal/*": "./lib/internal/*.js",
"#timers/*": "./lib/timers/*.js",
"#node:test": "./lib/test.js"
},
"scripts": {
"test": "npm run test:lint && npm run test:unit",
"test:lint": "standard",
"test:lint:fix": "standard --fix",
"test:unit": "node test/parallel.mjs && node test/message.js && node test/node-core-test.js"
},
"devDependencies": {
"standard": "^17.0.0"
},
"dependencies": {
"minimist": "^1.2.6",
"readable-stream": "^4.3.0",
"string.prototype.replaceall": "^1.0.6"
}
}