-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.34 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.34 KB
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
{
"name": "mocha-jested",
"version": "0.0.0-dev",
"description": "Bring some jest API to mocha",
"repository": "https://github.com/unlight/mocha-jested.git",
"bugs": {
"url": "https://github.com/unlight/mocha-jested/issues"
},
"homepage": "https://github.com/unlight/mocha-jested#readme",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"keywords": [
"mocha",
"jest",
"mocha-ui"
],
"license": "MIT",
"scripts": {
"test": "npm run tscheck && npm run eslint && npm run test:cov",
"test:r": "node -r ts-node/register node_modules/mocha/bin/mocha src/*.spec.ts",
"test:w": "npm run test:r -- --watch-files src --watch",
"test:cov": "c8 --reporter text --exclude \"**/*.spec.ts\" --exclude \"**/testing/**\" npm run test:r -- --no-timeouts",
"eslint": "node node_modules/eslint/bin/eslint \"src/**/*.{ts,tsx}\"",
"eslint:w": "watchexec -w src \"npm run eslint\"",
"eslint:fix": "npm run eslint -- --fix",
"tscheck": "tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"build": "sh Taskfile build_pkgroll"
},
"peerDependencies": {
"expect": ">=28",
"jest-mock": ">=28",
"mocha": ">=8",
"pretty-format": ">=28"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@swc/core": "^1.4.8",
"@swc/helpers": "^0.5.7",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"c8": "^9.1.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^51.0.1",
"expect": ">=29",
"jest": "^29.7.0",
"jest-each": "^29.7.0",
"jest-mock": ">=29",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"pkgroll": "^2.0.2",
"prettier": "^3.2.5",
"reflect-metadata": "^0.2.1",
"request": "^2.88.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.2",
"typescript": "^5.4.3",
"watchexec-bin": "^1.0.0"
}
}