-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "test-director",
"version": "11.0.0",
"description": "An ultra lightweight unit test director for Node.js.",
"license": "MIT",
"author": {
"name": "Jayden Seric",
"email": "[email protected]",
"url": "https://jaydenseric.com"
},
"repository": "github:jaydenseric/test-director",
"homepage": "https://github.com/jaydenseric/test-director#readme",
"bugs": "https://github.com/jaydenseric/test-director/issues",
"funding": "https://github.com/sponsors/jaydenseric",
"keywords": [
"test",
"director",
"esm",
"mjs"
],
"files": [
"reportError.mjs",
"TestDirector.mjs"
],
"sideEffects": false,
"exports": {
".": "./TestDirector.mjs",
"./package.json": "./package.json",
"./TestDirector.mjs": "./TestDirector.mjs"
},
"engines": {
"node": "^16.9.0 || >= 18.0.0"
},
"dependencies": {
"@types/node": "*",
"kleur": "^4.1.5"
},
"devDependencies": {
"coverage-node": "^8.0.0",
"eslint": "^8.35.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^2.8.4",
"replace-stack-traces": "^2.0.0",
"snapshot-assertion": "^5.0.0",
"test-director": "^10.0.0",
"typescript": "^4.9.5"
},
"scripts": {
"eslint": "eslint .",
"prettier": "prettier -c .",
"types": "tsc -p jsconfig.json",
"tests": "coverage-node test.mjs",
"test": "npm run eslint && npm run prettier && npm run types && npm run tests",
"prepublishOnly": "npm test"
}
}