-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.22 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.22 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
77
78
79
80
81
82
83
{
"name": "jest-callslike",
"description": "A jest assertion that checks calls for count, order and informed parameters, all at once",
"version": "0.2.3",
"author": {
"name": "Thiago O Santos <tos.oliveira@gmail.com>"
},
"engines": {
"node": ">=22"
},
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"doc": "npx typedoc",
"lint": "npm run lint:format && npm run lint:style",
"lint:fix": "npm run lint:format:fix && npm run lint:style:fix",
"build": "nest build",
"test": "jest test/unit",
"test:watch": "jest test/unit --watch",
"test:coverage": "jest test/unit --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest test/e2e",
"lint:format": "prettier --check '{src,test}/**/*.ts'",
"lint:format:fix": "prettier --write '{src,test}/**/*.ts'",
"lint:style": "eslint '**/*.ts'",
"lint:style:fix": "eslint '**/*.ts' --fix"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"preset": "ts-jest",
"coverageDirectory": "./coverage",
"collectCoverageFrom": [
"./src/**/*.ts"
],
"testEnvironment": "node"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/codibre/jest-callslike.git"
},
"homepage": "https://github.com/codibre/jest-callslike#readme",
"bugs": {
"url": "https://github.com/codibre/jest-callslike/issues"
},
"keywords": [
"jest",
"assertion",
"call",
"matcher"
],
"license": "MIT",
"devDependencies": {
"@nestjs/cli": "^11.0.10",
"@stylistic/eslint-plugin": "^5.5.0",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"eslint": "^9.39.1",
"eslint-plugin-unused-imports": "^4.3.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.9.3"
}
}