forked from davesag/sequelize-test-helpers
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.9 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.9 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
{
"name": "sequelize-jest-kit",
"version": "2.0.2",
"description": "A collection of utilities to help with unit-testing sequelize models using jest. Originally forked from @davesag's https://github.com/davesag/sequelize-test-helpers",
"author": "Howard Edwards (https://github.com/howard-e)",
"contributors": [
"Dave Sag (https://github.com/davesag)",
"Gerhard Kubion (https://github.com/gerhardkubion)",
"Ben Winchester (https://github.com/bmw2621)",
"Jasper Stam (https://github.com/stam)",
"Oscar Dub (https://github.com/odub)"
],
"type": "commonjs",
"license": "MIT",
"main": "src/index.js",
"engines": {
"node": ">= 8.10.0"
},
"files": ["CONTRIBUTING.md", "src", "logo/horizontal.svg"],
"directories": {
"lib": "src",
"test": "test"
},
"scripts": {
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "npm run test:unit",
"test:unit": "NODE_ENV=test jest ./test/unit/ --setupFilesAfterEnv ./test/unitTestHelper.js",
"test:unit:cov": "NODE_ENV=test jest ./test/unit/ --coverage --setupFilesAfterEnv ./test/unitTestHelper.js",
"snyk-protect": "snyk-protect",
"knip": "knip",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/howard-e/sequelize-jest-kit.git"
},
"bugs": {
"url": "https://github.com/howard-e/sequelize-jest-kit/issues"
},
"homepage": "https://github.com/howard-e/sequelize-jest-kit#readme",
"keywords": ["sequelize", "mock", "mocking", "unit-testing", "jest"],
"devDependencies": {
"@biomejs/biome": "2.4.9",
"@types/node": "^25.5.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"knip": "^6.1.0",
"lint-staged": "^16.4.0",
"proxyquire": "^2.1.3",
"typescript": "^6.0.2"
},
"lint-staged": {
"*.{js,json}": ["biome check --write --no-errors-on-unmatched"]
},
"snyk": true,
"dependencies": {
"jest-mock": "^30.3.0"
}
}