-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "mocha-multi-reporter",
"version": "0.1.0",
"description": "Reporter for running multiple mocha reporters",
"main": "./build/dist/src/index.js",
"scripts": {
"test": "mocha --extension ts --require ts-node/register \"tests/**/*.test.ts\"",
"build": "babel src --out-dir ./build/dist/src --extensions '.ts' --source-maps --ignore '**/*.d.ts'",
"lint": "eslint './src/**/*.{ts,tsx}'"
},
"keywords": [
"mocha",
"reporter"
],
"author": "MisanthropicBit",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.8",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.20.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"unexpected": "^12.0.5"
},
"dependencies": {
"mocha": "^10.2.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}