forked from justsml/monogram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.14 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
{
"name": "@aptoma/monogram",
"description": "TAO (aspect-oriented) modeling for MongoDB",
"version": "2.0.0",
"author": "Valeri Karpov <[email protected]>",
"contributors": [
"Martin Jonsson <[email protected]>"
],
"dependencies": {
"rxjs": "^7.8.1"
},
"devDependencies": {
"acquit": "^1.3.0",
"acquit-ignore": "^0.2.1",
"acquit-markdown": "0.1.0",
"archetype": "^0.13.0",
"auto-changelog": "^2.4.0",
"mocha": "^10.2.0",
"mongodb": "^6.3.0",
"mongodb-runner": "^4.9.0",
"release-it": "^15.4.2"
},
"peerDependencies": {
"mongodb": "6.x"
},
"keywords": [
"mongodb",
"aspect",
"tao",
"orm",
"db",
"schema",
"casting",
"stream",
"mongoose"
],
"engines": {
"node": ">= 18"
},
"license": "Apache 2.0",
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/aptoma/monogram.git"
},
"scripts": {
"test": "mocha test/*.test.js --exit",
"release": "npm test && release-it -n -i patch",
"release:minor": "npm test && release-it -n -i minor",
"release:major": "npm test && release-it -n -i major"
}
}