-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
86 lines (86 loc) · 2.24 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
{
"name": "@zakodium/adonis-mongodb",
"version": "0.19.0",
"description": "MongoDB provider for AdonisJs",
"main": "./lib/providers/MongodbProvider.js",
"types": "./lib/adonis-typings/index.d.ts",
"files": [
"lib",
"src",
"templates",
"instructions.md"
],
"keywords": [
"adonisjs",
"adonis",
"mongo",
"mongodb",
"orm",
"provider"
],
"author": "Michaël Zasso",
"license": "MIT",
"adonisjs": {
"templates": {
"basePath": "./templates",
"config": "mongodb.txt"
},
"env": {
"MONGODB_CONNECTION": "mongodb",
"MONGODB_URL": "mongodb://localhost:27017?directConnection=true",
"MONGODB_DATABASE": "test"
},
"instructionsMd": "./instructions.md",
"types": "@zakodium/adonis-mongodb",
"providers": [
"@zakodium/adonis-mongodb"
],
"commands": [
"@zakodium/adonis-mongodb/lib/commands"
]
},
"scripts": {
"clean": "rimraf lib",
"check-types": "tsc --noEmit",
"eslint": "eslint . --cache",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run tsc",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"test": "npm run test-only && npm run eslint && npm run prettier && npm run check-types",
"test-only": "jest --coverage",
"tsc": "npm run clean && npm run tsc-cjs",
"tsc-cjs": "tsc --project tsconfig.prod.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zakodium/adonis-mongodb.git"
},
"bugs": {
"url": "https://github.com/zakodium/adonis-mongodb/issues"
},
"homepage": "https://github.com/zakodium/adonis-mongodb#readme",
"devDependencies": {
"@adonisjs/auth": "^8.2.3",
"@adonisjs/core": "^5.9.0",
"@adonisjs/logger": "^4.1.5",
"@poppinss/cliui": "^3.0.5",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/pluralize": "0.0.29",
"eslint": "^9.16.0",
"eslint-config-zakodium": "^14.0.0",
"jest": "^29.7.0",
"prettier": "^3.4.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"dependencies": {
"@poppinss/utils": "^5.0.0",
"cli-table3": "^0.6.5",
"lodash": "^4.17.21",
"mongodb": "^6.11.0",
"pluralize": "^8.0.0"
}
}