-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.15 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
{
"name": "objection-transactional-tests",
"version": "0.2.1",
"description": "Wrap Jest or Mocha tests in Objection transactions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.json",
"clean": "rm -r dist/*",
"prepublishOnly": "npm run clean; npm run build",
"test:jest": "jest",
"test:mocha": "mocha -r ts-node/register tests/mocha.ts",
"test": "npm run test:jest && npm run test:mocha"
},
"keywords": [
"objection",
"objection.js",
"jest",
"transaction"
],
"author": "Ville Lautanala <lautis@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/mocha": "^10.0.9",
"jest": "^29.7.0",
"knex": "^3.1.0",
"mocha": "^10.7.3",
"objection": "^3.1.5",
"sqlite3": "5.1.7",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"peerDependencies": {
"objection": "^1.0.0 || ^2.0.0 || ^3.0.0"
},
"packageManager": "pnpm@9.5.0+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}