-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.06 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "deride",
"description": "Mocking library based on composition",
"version": "2.0.0",
"homepage": "https://guzzlerio.github.io/deride/",
"author": {
"name": "Andrew Rea",
"url": "http://www.andrewrea.co.uk"
},
"contributors": [
{
"name": "James Allen",
"url": "https://github.com/jamlen"
}
],
"repository": {
"type": "git",
"url": "git://github.com/guzzlerio/deride.git"
},
"bugs": {
"url": "https://github.com/guzzlerio/deride/issues"
},
"license": "MIT",
"keywords": [
"test",
"testing",
"test double",
"mocking",
"mock",
"stub",
"wrap",
"expect",
"expectations",
"setup"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./clock": {
"types": "./dist/clock.d.ts",
"import": "./dist/clock.js",
"require": "./dist/clock.cjs"
},
"./vitest": {
"types": "./dist/vitest.d.ts",
"import": "./dist/vitest.js",
"require": "./dist/vitest.cjs"
},
"./jest": {
"types": "./dist/jest.d.ts",
"import": "./dist/jest.js",
"require": "./dist/jest.cjs"
}
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist"
],
"packageManager": "pnpm@10.12.1",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"coverage:open": "open reports/index.html",
"commitlint": "commitlint",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"release": "semantic-release",
"release:dry-run": "semantic-release --dry-run --no-ci",
"prepublishOnly": "npm run lint && npm run test:coverage && npm run build"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/debug": "^4.1.13",
"@types/node": "^25.6.0",
"@vitest/coverage-istanbul": "^4.1.4",
"@vitest/coverage-v8": "^4.1.4",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^62.9.0",
"prettier": "^3.x",
"semantic-release": "^24.2.0",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2",
"vitepress": "2.0.0-alpha.17",
"vitest": "^4.1.4"
},
"dependencies": {
"debug": "^4.4.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}