-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.57 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
{
"name": "strong-mock",
"version": "9.0.0",
"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 --ext ts,tsx,js .",
"test": "jest --coverage --config tests/jest.config.js"
},
"dependencies": {
"jest-diff": "~29.7.0",
"jest-matcher-utils": "~29.7.0",
"lodash": "~4.17.0"
},
"devDependencies": {
"@nighttrax/eslint-config-ts": "~12.0.0-alpha.0",
"@tdd-buffet/jest-config": "~6.0.0",
"@tdd-buffet/tsconfig": "~1.0.5",
"@types/jest": "~29.5.0",
"@types/node": "~22.8.0",
"@types/lodash": "~4.17.0",
"doctoc": "~2.2.0",
"eslint": "~8.57.0",
"jest": "~29.7.0",
"microbundle": "~0.15.0",
"standard-version": "~9.5.0",
"strip-ansi": "~6.0.0",
"strong-mock": "~6.0.0",
"tslib": "~2.8.0",
"typescript": "~5.6.0"
}
}