-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.14 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.14 KB
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
{
"name": "@momsfriendlydevco/testa",
"version": "1.2.0",
"description": "Low-overhead, parallel-first testkit harness",
"type": "module",
"bin": {
"testa": "./app.js"
},
"scripts": {
"lint": "eslint",
"test": "./app.js"
},
"keywords": [
"test",
"testkit"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MomsFriendlyDevCo/Testa.git"
},
"bugs": {
"url": "https://github.com/MomsFriendlyDevCo/Testa/issues"
},
"homepage": "https://github.com/MomsFriendlyDevCo/Testa#readme",
"author": "Matt Carter <m@ttcarter.com>",
"license": "MIT",
"engineStrict": true,
"engines": {
"node": ">=22.0.0"
},
"imports": {
"#testa": "./lib/testa.js",
"#testa/*": "./lib/*.js"
},
"exports": {
".": "./lib/testa.js"
},
"dependencies": {
"chai": "^6.2.2",
"clean-stack": "^6.0.0",
"commander": "^14.0.2",
"jest-diff": "^30.3.0",
"json5": "^2.2.3",
"listr": "^0.14.3",
"p-graph": "^1.2.0",
"temp": "^0.9.4",
"timestring": "^7.0.0"
},
"devDependencies": {
"@momsfriendlydevco/eslint-config": "^2.3.1",
"eslint": "^9.39.2"
}
}