-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.01 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.01 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
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
{
"name": "@nemoventures/plugin-db",
"description": "Assertion package for database assertions",
"version": "0.2.4",
"engines": {
"node": ">=18.16.0"
},
"main": "build/index.js",
"type": "module",
"files": [
"index.ts",
"src",
"build/src",
"build/index.d.ts",
"build/index.js",
"build/index.d.ts.map"
],
"exports": {
".": "./build/index.js"
},
"scripts": {
"pretest": "npm run typecheck",
"test": "c8 npm run quick:test",
"quick:test": "echo \"No tests yet\"",
"clean": "del-cli build",
"compile": "npm run clean && tsc",
"build": "npm run compile",
"version": "npm run build",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext=.ts",
"typecheck": "tsc --noEmit",
"format": "prettier --write ."
},
"devDependencies": {
"@adonisjs/core": "^6.19.0",
"@adonisjs/eslint-config": "^1.3.0",
"@adonisjs/lucid": "^21.8.0",
"@adonisjs/prettier-config": "^1.4.0",
"@adonisjs/tsconfig": "^1.4.0",
"@japa/runner": "^4.2.0",
"@swc/core": "^1.10.12",
"@types/luxon": "^3.4.2",
"@types/node": "^22.12.0",
"del-cli": "^6.0.0",
"eslint": "^8.57.1",
"eslint-plugin-prettier": "^5.2.3",
"pg": "^8.13.1",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@japa/assert": "^4.0.1",
"knex": "^3.1.0"
},
"peerDependencies": {
"@adonisjs/core": "^6.19.0",
"@adonisjs/lucid": "^21.8.0",
"@japa/runner": "^4.2.0"
},
"author": "Simone,NEMO",
"license": "MIT",
"eslintConfig": {
"extends": "@adonisjs/eslint-config/package"
},
"prettier": "@adonisjs/prettier-config",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"repository": {
"type": "git",
"url": "https://github.com/nemoengineering/plugin-db.git"
},
"tsup": {
"entry": [
"./index.ts"
],
"outDir": "./build",
"clean": true,
"format": "esm",
"dts": false,
"sourcemap": true,
"target": "esnext"
}
}