-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
130 lines (130 loc) · 3.23 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@julr/japa-database-plugin",
"type": "module",
"version": "1.1.0-beta.4",
"packageManager": "[email protected]",
"description": "Database assertions and testing helpers for Japa",
"author": "Julien Ripouteau <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/Julien-R44",
"homepage": "https://github.com/Julien-R44/japa-database-plugin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Julien-R44/japa-database-plugin.git"
},
"bugs": {
"url": "https://github.com/Julien-R44/japa-database-plugin/issues"
},
"keywords": [
"japa",
"database",
"testing assertions",
"japa plugin"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/esm/index.js",
"import": "./dist/esm/index.js"
}
},
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/types/index.d.ts"
]
}
},
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint . --ext=.ts",
"build": "ts-node-esm scripts/build.ts",
"format": "prettier --write .",
"prepublishOnly": "pnpm build",
"release": "bumpp --commit --push --tag && pnpm publish",
"start": "ts-node-esm src/index.ts",
"quick:test": "cross-env DB=sqlite ts-node-esm bin/test.ts",
"test": "ts-node-esm bin/test.ts",
"test:sqlite": "cross-env DB=sqlite pnpm test",
"test:better_sqlite": "cross-env DB=better_sqlite pnpm test",
"test:postgres": "cross-env DB=postgres pnpm test",
"test:mysql": "cross-env DB=mysql pnpm test",
"test:mssql": "cross-env DB=mssql pnpm test",
"test:all": "pnpm test:sqlite && pnpm test:postgres && pnpm test:mysql",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@japa/assert": "^1.1.0",
"@japa/expect": "^2.0.0",
"@japa/runner": "^2.0.9"
},
"peerDependenciesMeta": {
"@japa/assert": {
"optional": true
},
"@japa/expect": {
"optional": true
}
},
"dependencies": {
"knex": "^2.4.2"
},
"devDependencies": {
"@japa/assert": "^1.4.1",
"@japa/expect": "^2.0.2",
"@japa/runner": "^2.5.1",
"@japa/spec-reporter": "^1.3.3",
"@julr/eslint-config": "^0.3.2",
"@types/node": "^18.15.3",
"better-sqlite3": "^8.2.0",
"bumpp": "^9.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"expect": "^29.5.0",
"mysql2": "^2.3.3",
"pg": "^8.10.0",
"pnpm": "^7.29.3",
"prettier": "^2.8.4",
"pretty-ms": "^8.0.0",
"rimraf": "^4.4.0",
"sqlite3": "^5.1.6",
"tedious": "^15.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"openapi-types",
"@babel/core",
"@japa/core"
]
}
},
"eslintConfig": {
"extends": "@julr"
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"useTabs": false,
"quoteProps": "consistent",
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 100
}
}