-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 1.64 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "mocha-remote-cli",
"version": "1.12.3",
"description": "Run Mocha tests somewhere - get reporting elsewhere",
"type": "module",
"main": "dist/index.js",
"files": [
"dist",
"logo.txt",
"mocha-remote.js"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepack": "cp ../../README.md .",
"test": "mocha",
"start": "tsx src/cli.ts"
},
"nx": {
"targets": {
"test": {
"dependsOn": [
"^build"
]
}
}
},
"bin": {
"mocha-remote": "./mocha-remote.js"
},
"author": {
"name": "Kræn Hansen",
"email": "[email protected]",
"url": "https://github.com/kraenhansen"
},
"keywords": [
"mocha"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kraenhansen/mocha-remote.git",
"directory": "packages/cli"
},
"bugs": "https://github.com/kraenhansen/mocha-remote/issues",
"license": "ISC",
"dependencies": {
"chalk": "^5.3.0",
"debug": "^4.3.1",
"mocha-remote-server": "1.12.3",
"yargs": "^17.7.2"
},
"engines": {
"node": "^20"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/debug": "^4.1.5",
"@types/yargs": "^17.0.32",
"mocha-remote-client": "1.12.3"
},
"eslintConfig": {
"parserOptions": {
"sourceType": "module"
},
"env": {
"node": true
},
"overrides": [
{
"files": "src/**/*.test.ts",
"env": {
"mocha": true
}
}
]
},
"mocha": {
"import": "tsx",
"extension": [
"ts"
],
"spec": "src/**/*.test.ts",
"slow": 3000,
"timeout": 5000
}
}