-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.04 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
{
"name": "@feathers-plus/validate-joi-mongodb",
"version": "1.0.0",
"description": "Utilities for working with @feathers-plus/validate-joi and MongoDB",
"main": "index.js",
"repository": "https://github.com/feathers-plus/validate-joi-mongodb",
"author": "Marshall Thompson",
"license": "MIT",
"private": false,
"scripts": {
"test": "npm run mocha",
"mocha": "mocha test/**/*.test.js --recursive --exit",
"publish": "git push origin --tags && git push origin",
"release:pre": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"mongodb": "^3.6.6"
},
"peerDependencies": {
"@feathers-plus/validate-joi": "^3.4.0",
"joi": "^17.4.0"
},
"devDependencies": {
"@feathers-plus/validate-joi": "^3.1.0",
"chai": "^4.3.4",
"joi": "^17.4.0",
"mocha": "^8.4.0"
}
}