-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 1.9 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
86
87
88
{
"name": "mocha-remote-root",
"private": true,
"description": "Run Mocha tests somewhere - get reporting elsewhere",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"lint": "eslint .",
"build": "nx run-many -t build",
"test": "nx run-many -t test"
},
"author": {
"name": "Kræn Hansen",
"email": "[email protected]",
"url": "https://github.com/kraenhansen"
},
"keywords": [
"mocha"
],
"repository": "github:kraenhansen/mocha-remote",
"bugs": "https://github.com/kraenhansen/mocha-remote/issues",
"license": "ISC",
"devDependencies": {
"@tsconfig/node16": "^16.1.3",
"@types/chai": "^4",
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.10",
"@types/node": "^20",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@nx/js": "^19.3.2",
"chai": "^5.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"mocha": "11.0.0",
"prettier": "^3.2.5",
"tsx": "^4.7.3",
"typescript": "^5.4.5",
"ws": "^8.17.1",
"nx": "^19.3.2"
},
"eslintConfig": {
"root": true,
"extends": [
"eslint:recommended",
"prettier"
],
"ignorePatterns": [
"**/dist/",
"packages/integration-tests/environments/"
],
"parserOptions": {
"ecmaVersion": 2018
},
"env": {
"es2017": true
},
"rules": {
"no-console": "warn"
},
"overrides": [
{
"files": "**/*.ts",
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
]
},
{
"files": "scripts/*.js",
"env": {
"node": true
}
},
{
"files": "**/*.test.js",
"env": {
"mocha": true
}
}
]
}
}