-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.8 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
{
"name": "@e22m4u/js-repository-mongodb-adapter",
"version": "0.1.9",
"description": "MongoDB адаптер для @e22m4u/js-repository",
"type": "module",
"module": "./src/index.js",
"main": "./dist/cjs/index.cjs",
"exports": {
"import": "./src/index.js",
"require": "./dist/cjs/index.cjs"
},
"engines": {
"node": ">=14.20.1"
},
"scripts": {
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"format": "prettier --write \"./src/**/*.js\"",
"test": "npm run lint && c8 --reporter=text-summary mocha",
"test:coverage": "npm run lint && c8 --reporter=text mocha",
"build:cjs": "rimraf ./dist/cjs && node --no-warnings=ExperimentalWarning build-cjs.js",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/e22m4u/js-repository-mongodb-adapter.git"
},
"keywords": [
"MongoDB",
"Repository",
"ORM",
"ODM",
"Database",
"Datasource",
"Relations"
],
"author": "e22m4u <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/e22m4u/js-repository-mongodb-adapter",
"dependencies": {
"mongodb": "5.9.2"
},
"peerDependencies": {
"@e22m4u/js-format": "*",
"@e22m4u/js-repository": "0.1.x",
"@e22m4u/js-service": "*"
},
"devDependencies": {
"@commitlint/cli": "~19.5.0",
"@commitlint/config-conventional": "~19.5.0",
"@eslint/js": "~9.14.0",
"c8": "~10.1.2",
"chai": "~5.1.2",
"chai-as-promised": "~8.0.0",
"dotenv": "~16.4.5",
"esbuild": "~0.24.0",
"eslint": "~9.14.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-chai-expect": "~3.1.0",
"eslint-plugin-mocha": "~10.5.0",
"globals": "~15.12.0",
"husky": "~9.1.6",
"mocha": "~10.8.2",
"prettier": "~3.3.3",
"rimraf": "^6.0.1"
}
}