-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 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
{
"name": "docdb",
"version": "0.0.6",
"description": "crossplatform NoSQL JS database",
"main": "index.js",
"author": {
"name": "Siarhei Dudko",
"email": "siarhei@dudko.dev",
"url": "https://dudko.dev/"
},
"funding": [
{
"type": "individual",
"url": "http://dudko.dev/donate"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/dudko.dev"
},
{
"type": "paypal",
"url": "https://paypal.me/dudkodev"
},
{
"type": "patreon",
"url": "https://patreon.com/dudko_dev"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "github:dudko-dev/docdb"
},
"bugs": {
"url": "https://github.com/dudko-dev/docdb/issues"
},
"homepage": "https://github.com/dudko-dev/docdb#readme",
"scripts": {
"test": "node test.index.js",
"update": "eval \"$(node -e 'const t = require(`./package.json`);const ignore = require(`./ignoreUpdatesModules.json`);console.log(`npm i ${(Object.keys(t.dependencies || {}).filter((e)=>ignore.base.indexOf(e) === -1).map((e)=>(`${e}@latest`)).join(` `))} --save&&npm i ${(Object.keys(t.devDependencies || {}).filter((e)=>ignore.dev.indexOf(e) === -1).map((e)=>(`${e}@latest`)).join(` `))} --save-dev`);')\""
},
"keywords": [
"nosql",
"db",
"datastore"
],
"dependencies": {
"@sergdudko/objectstream": "^4.0.6"
}
}