forked from zakodium/adonis-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.38 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
{
"name": "@zakodium/adonis-mongodb",
"version": "0.6.0",
"description": "MongoDB provider for AdonisJs",
"main": "./lib/providers/MongodbProvider.js",
"types": "./lib/src/types.d.ts",
"files": [
"lib",
"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",
"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",
"prepublishOnly": "npm run tsc",
"test-only": "jest",
"test-coverage": "jest --coverage",
"test": "npm run test-only && npm run eslint && npm run check-types",
"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",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"devDependencies": {
"@adonisjs/auth": "^5.1.1",
"@adonisjs/core": "~5.0.4-preview-rc",
"@adonisjs/logger": "^4.0.1",
"@poppinss/cliui": "^2.2.1",
"@types/jest": "^26.0.21",
"@types/lodash": "^4.14.168",
"@types/pluralize": "0.0.29",
"@zakodium/eslint-config": "^3.0.1",
"eslint": "^7.22.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"dependencies": {
"@poppinss/utils": "^3.0.5",
"@types/mongodb": "^3.6.10",
"cli-table3": "^0.6.0",
"lodash": "^4.17.21",
"mongodb": "^3.6.5",
"pluralize": "^8.0.0"
}
}