-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.69 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
{
"name": "strong-mock",
"version": "9.0.1",
"description": "Type safe mocking library for TypeScript",
"keywords": [
"tdd",
"test",
"mock",
"stub",
"fake",
"test double",
"expectation",
"interface",
"type",
"typescript",
"ts",
"diff",
"matcher"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NiGhTTraX/strong-mock.git"
},
"author": "Andrei Picus",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"docs": "doctoc --title '**Table of Contents**' README.md",
"build": "pnpm run clean && pnpm run compile",
"clean": "rm -rf ./dist",
"compile": "microbundle --no-compress --target node -f cjs --tsconfig tsconfig.build.json src/index.ts",
"prepublishOnly": "pnpm run build",
"release": "standard-version",
"lint": "eslint --quiet .",
"test": "jest --coverage --config tests/jest.config.ts"
},
"dependencies": {
"jest-diff": "~29.7.0",
"jest-matcher-utils": "~29.7.0",
"lodash": "~4.17.0"
},
"devDependencies": {
"@eslint/js": "~9.16.0",
"@types/jest": "~29.5.0",
"@types/lodash": "~4.17.0",
"@types/node": "~22.10.0",
"doctoc": "~2.2.0",
"eslint": "~9.16.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-prettier": "~5.2.1",
"jest": "~29.7.0",
"microbundle": "~0.15.0",
"prettier": "~3.4.2",
"standard-version": "~9.5.0",
"strip-ansi": "~6.0.0",
"strong-mock": "~8.0.1",
"ts-jest": "~29.2.5",
"ts-node": "~10.9.2",
"tslib": "~2.8.0",
"typescript": "~5.7.0",
"typescript-eslint": "~8.17.0"
},
"packageManager": "[email protected]"
}