-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
82 lines (82 loc) · 2.34 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
{
"name": "feathers-mongodb-management",
"description": "Feathers service adapters for managing MongoDB databases, collections and users",
"version": "2.0.1",
"homepage": "https://github.com/feathersjs-ecosystem/feathers-mongodb-management",
"main": "lib/index.js",
"type": "module",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs-ecosystem/feathers-mongodb-management.git"
},
"author": {
"name": "Feathers contributors",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-mongodb-management/issues"
},
"engines": {
"node": ">= 14.0.0"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator -u feathersjs-ecosystem -p feathers-mongodb-management && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "semistandard lib/**/*.js test/**/*.js --fix",
"mocha": "cross-env NODE_CONFIG_DIR=./test/config/ mocha test/*.test.js --exit",
"coverage": "c8 npm run mocha",
"mongodb": "run-rs -v 4.0.0",
"test": "npm run lint && npm run coverage",
"update-dependencies": "ncu -u"
},
"semistandard": {
"sourceType": "module",
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"lib/**",
"types/**",
"*.d.ts",
"*.js"
],
"dependencies": {
"@feathersjs/adapter-commons": "^5.0.0-pre.28",
"@feathersjs/commons": "^5.0.0-pre.28",
"@feathersjs/errors": "^5.0.0-pre.28",
"@feathersjs/feathers": "^5.0.0-pre.28",
"debug": "^4.3.3",
"mongodb": "^4.2.1",
"sift": "^15.1.0"
},
"devDependencies": {
"@feathersjs/configuration": "^5.0.0-pre.28",
"c8": "^7.11.0",
"chai": "^4.3.4",
"chai-lint": "^0.1.1",
"containerized": "^1.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.4.1",
"mocha": "^9.1.3",
"npm-check-updates": "^12.3.0",
"run-rs": "^0.7.5",
"semistandard": "^16.0.1",
"shx": "^0.3.3"
}
}