-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "hamjest-sinon",
"version": "2.0.2",
"description": "Sinon Matcher for Hamjest",
"main": "src/index.js",
"types": "./@types/index.d.ts",
"scripts": {
"setup": "corepack enable && corepack prepare yarn@stable --activate && yarn set version stable",
"testTS": "tsc --lib es2015 --skipLibCheck --noEmit true ./@types/*.ts",
"testMochaJS": "mocha \"src/**/*.spec.js\"",
"testJestJS": "jest src",
"test": "yarn testMochaJS && yarn testJestJS && yarn testTS",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/mafo5/hamjest-sinon.git"
},
"keywords": [
"hamjest",
"jest",
"matcher",
"mock",
"sinon",
"spy",
"stub",
"wasCalled"
],
"author": "Martin Fochler",
"license": "MIT",
"bugs": {
"url": "https://github.com/mafo5/hamjest-sinon/issues"
},
"homepage": "https://github.com/mafo5/hamjest-sinon#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.13.0",
"eslint-config-leanbyte": "^2.0.0",
"hamjest": "^4.0.1",
"jest": "^29.3.1",
"jest-mock": "^29.3.1",
"lodash": "^4.17.21",
"mocha": "^10.0.0",
"sinon": "^16.0.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"hamjest": "^4.0.1",
"lodash": "^4.17.15",
"sinon": ">=15.0.0 <17.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"packageManager": "[email protected]"
}