-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
78 lines (78 loc) · 2.19 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
{
"name": "feathers-nedb",
"description": "Feathers NeDB Service",
"version": "7.0.1",
"homepage": "https://github.com/feathersjs-ecosystem/feathers-nedb",
"main": "lib/",
"repository": {
"type": "git",
"url": "https://github.com/feathersjs-ecosystem/feathers-nedb.git"
},
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-nedb/issues"
},
"license": "MIT",
"keywords": [
"feathers",
"feathers-plugin",
"REST",
"Socket.io",
"realtime",
"nedb",
"service"
],
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"lib/**",
"src/**",
"*.d.ts",
"*.js"
],
"author": "Feathers <[email protected]> (http://feathersjs.com)",
"contributors": [
"Marshall Thompson <[email protected]> (https://github.com/marshallswain)",
"Eric Kryski <[email protected]> (http://erickryski.com)",
"David Luecke <[email protected]> (http://neyeon.com)"
],
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator -u feathersjs-ecosystem -p feathers-nedb && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"update-dependencies": "ncu -u",
"compile": "shx rm -rf lib/ && tsc",
"test": "shx rm -rf db-data/ && mocha --recursive test/**.test.ts test/**/*.test.ts"
},
"semistandard": {
"env": [
"mocha"
]
},
"engines": {
"node": ">= 16"
},
"dependencies": {
"@feathersjs/adapter-commons": "^5.0.11",
"@feathersjs/commons": "^5.0.11",
"@feathersjs/errors": "^5.0.11"
},
"peerDependencies": {
"@seald-io/nedb": "^4.0.2"
},
"devDependencies": {
"@feathersjs/adapter-tests": "^5.0.11",
"@feathersjs/express": "^5.0.11",
"@feathersjs/feathers": "^5.0.11",
"@feathersjs/socketio": "^5.0.11",
"body-parser": "^1.20.0",
"@types/mocha": "^10.0.2",
"mocha": "^10.2.0",
"npm-check-updates": "^16.0.6",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}