-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.99 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
69
70
71
72
73
74
75
76
77
78
{
"name": "sinon-mocha-test",
"version": "3.0.1",
"description": "Automatic Sinon sandbox for Mocha tests",
"type": "module",
"main": "./build/code/index.js",
"exports": {
"import": "./build/code/index.js",
"require": "./build/wrapper.cjs"
},
"engines": {
"node": ">=18.18.0"
},
"repository": {
"type": "git",
"url": "git@github.com:peterjwest/sinon-mocha-test.git"
},
"files": [
"/build"
],
"author": "Peter West",
"bugs": {
"url": "https://github.com/peterjwest/sinon-mocha-test/issues"
},
"keywords": [
"sinon",
"mocha",
"tests",
"test",
"unit",
"mock",
"stub",
"spy"
],
"license": "MIT",
"homepage": "https://github.com/peterjwest/sinon-mocha-test#readme",
"scripts": {
"build": "rm -rf build/code && tsup src/index.ts --format cjs,esm --dts --out-dir build/code",
"lint:ts": "eslint",
"lint:dependencies": "depcheck",
"lint:unlinted": "unlinted",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run",
"test:snippets": "test-snippets",
"preinstall": "npx only-allow pnpm",
"prepublish": "pnpm install && pnpm build"
},
"dependencies": {
"sinon": "^18.0.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@total-typescript/ts-reset": "^0.5.1",
"@types/bluebird": "^3.5.42",
"@types/mocha": "^10.0.8",
"@types/node": "^22.7.4",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"@vitest/coverage-v8": "^2.1.1",
"bluebird": "^3.7.2",
"depcheck": "^1.4.7",
"eslint": "^9.11.1",
"jest": "^29.7.0",
"mocha": "^10.7.3",
"test-snippets": "^2.0.1",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"unlinted": "^2.0.1",
"vitest": "^2.1.1"
}
}