-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
86 lines (86 loc) · 2.05 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": "lucid-mongo",
"description": "A Mongodb ODM",
"main": "index.js",
"version": "3.1.6",
"scripts": {
"lint": "standard",
"fix": "standard --fix",
"pretest": "npm run test:cleanup && npm run lint",
"test:cleanup": "rm -rf test/functional/database && rm -rf test/unit/tmp",
"posttest": "npm run test:cleanup && npm run coverage",
"test:local": "npm run test:cleanup && FORCE_COLOR=true DB=mongodb node japaFile.js",
"test": "nyc npm run test:local",
"test:win": "set DB=mongodb&& node japaFile.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"commit": "git-cz"
},
"keywords": [
"adonis",
"lucid",
"mongo",
"mongodb",
"orm",
"odm"
],
"standard": {
"global": [
"use",
"describe",
"it",
"after",
"before",
"context",
"make",
"beforeEach"
]
},
"author": "LuongND",
"license": "MIT",
"dependencies": {
"@adonisjs/generic-exceptions": "^2.0.1",
"chance": "^1.0.18",
"debug": "^4.1.1",
"geo-point": "^1.2.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"mongo-uri-builder": "^2.0.0",
"mongodb": "^3.2.7",
"mongodb-url": "^3.0.2",
"mquery": "^3.2.1",
"pluralize": "^8.0.0",
"pretty-hrtime": "^1.0.3",
"require-all": "^3.0.0"
},
"devDependencies": {
"@adonisjs/ace": "^5.0.8",
"@adonisjs/fold": "^4.0.9",
"@adonisjs/sink": "^1.0.17",
"clear-require": "^3.0.0",
"conventional-changelog-cli": "^2.0.21",
"coveralls": "^3.0.4",
"cz-conventional-changelog": "^3.0.0",
"fs-extra": "^8.1.0",
"japa": "^2.0.10",
"japa-cli": "^1.0.1",
"nyc": "^13.3.0",
"standard": "^13.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"include": [
"src",
"lib"
]
},
"repository": {
"type": "git",
"url": "https://github.com/duyluonglc/lucid-mongo.git"
},
"snyk": true
}