-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.53 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
{
"name": "@cubos/knex-repository",
"version": "0.0.0",
"description": "A set of repository classes to make it easier to interact with your database with knex",
"main": "src/index.ts",
"scripts": {
"test": "jest",
"eslint:fix": "eslint --fix '{src,spec}/**/*.ts'",
"eslint:check": "eslint '{src,spec}/**/*.ts'",
"build": "tsc",
"postgres:start": "docker run -d -p 5432:5432 --name postgres -e POSTGRES_HOST_AUTH_METHOD=trust postgres:13-alpine"
},
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cubos/node-knex-repository.git"
},
"bugs": {
"url": "https://github.com/cubos/node-knex-repository/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/cubos/node-knex-repository#readme",
"dependencies": {
"knex": "^2.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@cubos/eslint-config": "^2.0.631875",
"@types/jest": "^28.1.4",
"@types/lodash": "^4.14.182",
"@types/node": "^16.11.43",
"jest": "^28.1.2",
"jest-extended": "^2.0.0",
"pg": "^8.7.3",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"jest": {
"preset": "ts-jest",
"modulePaths": [
"<rootDir>/src/"
],
"testEnvironment": "node",
"testMatch": [
"**/spec/**/*.ts"
],
"verbose": true,
"testTimeout": 60000,
"collectCoverage": true,
"coverageReporters": [
"text",
"lcov"
],
"setupFilesAfterEnv": [
"jest-extended"
]
}
}