-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.09 KB
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
{
"name": "monastery",
"description": "⛪ A simple, straightforward MongoDB ODM",
"author": "Ricky Boyce",
"version": "5.0.2",
"license": "MIT",
"repository": "github:boycce/monastery",
"homepage": "https://boycce.github.io/monastery/",
"main": "lib/index.js",
"types": "./types/lib/index.d.ts",
"keywords": [
"database",
"javascript",
"monastery",
"mongo driver",
"mongo",
"mongodb",
"nodejs",
"odm",
"orm"
],
"scripts": {
"dev": "npm run lint & jest --watchAll --runInBand --verbose=false",
"dev-profile": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"docs": "cd docs && bundle exec jekyll serve --livereload --livereload-port 4001",
"lint": "eslint ./lib ./plugins ./test",
"mona": "nodemon resources/mona.js",
"mong": "nodemon resources/mong.js",
"major": "standard-version --release-as major && npm publish && git push --follow-tags",
"minor": "standard-version --release-as minor && npm publish && git push --follow-tags",
"patch": "standard-version --release-as patch && npm publish && git push --follow-tags",
"release": "standard-version && npm publish && git push --follow-tags",
"test": "npm run lint && jest",
"test-one-example": "jest -t \"files addFiles\" --watchAll",
"types": "tsc"
},
"dependencies": {
"@aws-sdk/client-s3": "3.549.0",
"@aws-sdk/lib-storage": "3.549.0",
"@aws-sdk/s3-request-presigner": "3.549.0",
"debug": "4.3.4",
"file-type": "16.5.4",
"mongodb": "7.6.0",
"nanoid": "3.2.0",
"validator": "13.7.0"
},
"devDependencies": {
"body-parser": "^1.20.2",
"eslint": "8.7.0",
"express": "^4.19.2",
"express-fileupload": "^1.5.0",
"jest": "30.5.1",
"nodemon": "^3.1.0",
"standard-version": "github:boycce/standard-version",
"supertest": "7.2.2"
},
"engines": {
"node": ">=20.19.0"
},
"standard-version": {
"infile": "changelog.md",
"releaseCommitMessageFormat": "{{currentTag}}",
"sign": true,
"skip": {
"changelog": false,
"tag": false
},
"tag-prefix": ""
}
}