-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 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
{
"name": "typeorm-mock-db",
"version": "0.0.11",
"description": "Mock Database for Unit Tests",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "npm-run-all clean lint test tsc",
"clean": "rm -rf dist",
"lint": "eslint src/**/*.ts --fix",
"prepublishOnly": "npm run build",
"test": "jest --coverage",
"tsc": "tsc -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blueleader07/typeorm-mock-db.git"
},
"keywords": [
"typeorm",
"nodejs",
"database"
],
"author": "Sean McKeon",
"license": "ISC",
"bugs": {
"url": "https://github.com/blueleader07/typeorm-mock-db/issues"
},
"homepage": "https://github.com/blueleader07/typeorm-mock-db#readme",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"@types/sinon": "^17.0.0",
"@types/tiny-async-pool": "^2.0.3",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"eslint": "^9.39.2",
"jest": "^30.2.0",
"jest-junit": "^16.0.0",
"npm-run-all": "^4.1.5",
"sinon": "^17.0.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.1",
"typeorm": "^0.3.28",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1"
},
"peerDependencies": {
"typeorm": "^0.3.15"
},
"engines": {
"node": ">=18"
}
}