-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.85 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
{
"name": "stormflow",
"version": "0.9.9",
"description": "StormFlow is a versatile Node.js data management library designed for efficient data management.",
"keywords": [
"stormflow",
"document",
"model",
"schema",
"query",
"nosql",
"nodb",
"data",
"database",
"db",
"datamanagement",
"datastore",
"memorydatabase",
"jsondatabase",
"mongodb",
"mongoose"
],
"author": {
"name": "Zsolt Tovis",
"email": "[email protected]",
"url": "https://toviszsolt.github.io/"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/toviszsolt"
},
{
"type": "paypal",
"url": "https://www.paypal.com/paypalme/toviszsolt"
}
],
"homepage": "https://github.com/toviszsolt/stormflow",
"repository": {
"type": "git",
"url": "https://github.com/toviszsolt/stormflow"
},
"bugs": {
"url": "https://github.com/toviszsolt/stormflow/issues"
},
"license": "MIT",
"type": "commonjs",
"main": "./dist/stormflow.js",
"types": "./dist/stormflow.d.ts",
"exports": {
".": {
"import": "./dist/stormflow.js",
"require": "./dist/stormflow.cjs"
}
},
"files": [
"dist/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"watch": "rollup -c -w",
"test": "jest --coverage",
"report": "start coverage/lcov-report/index.html",
"build": "rollup -c && dts-gen --expression-file dist/stormflow.cjs -f dist/stormflow.d.ts -o"
},
"devDependencies": {
"@babel/preset-env": "^7.22.15",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@types/jest": "^29.5.12",
"blocked-at": "^1.2.0",
"express": "^4.18.2",
"jest": "^29.7.0",
"moment-timezone": "^0.5.45",
"rollup": "^4.12.0"
}
}