-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 1.7 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
{
"name": "mocha-remote-client",
"version": "1.12.3",
"description": "Run Mocha tests somewhere - get reporting elsewhere",
"scripts": {
"build": "rollup -c",
"prepack": "cp ../../README.md .",
"test": "mocha"
},
"type": "module",
"main": "dist/node.bundle.cjs",
"module": "dist/node.bundle.mjs",
"browser": "dist/browser.bundle.mjs",
"types": "dist/bundle.d.ts",
"files": [
"dist"
],
"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/client"
},
"bugs": "https://github.com/kraenhansen/mocha-remote/issues",
"license": "ISC",
"dependencies": {
"debug": "^4.3.4",
"fast-equals": "^5.0.1",
"mocha-remote-common": "1.12.3",
"mocha": "10.4.0",
"ws": "^8.17.1"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"chai": "^4.3.4",
"mocha-remote-mocha": "*",
"rollup": "^4.17.0",
"rollup-plugin-dts": "^6.1.0",
"typed-emitter": "^2.1.0",
"util": "^0.12.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"eslintConfig": {
"parserOptions": {
"sourceType": "module"
},
"overrides": [
{
"files": "rollup.config.js",
"env": {
"node": true
}
}
]
},
"mocha": {
"import": "tsx",
"extension": [
"ts"
],
"spec": "src/**/*.test.ts",
"file": "src/node/index.ts"
}
}