forked from louischatriot/nedb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·45 lines (45 loc) · 1.07 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
{
"name": "@justlep/nedb",
"version": "2.1.5",
"type": "module",
"engines": {
"node": ">=14.17.6"
},
"author": "Lennart Pegel <github@justlep.net>",
"contributors": [
"Louis Chatriot <louis.chatriot@gmail.com>"
],
"description": "File-based embedded data store for node.js",
"keywords": [
"database",
"datastore",
"embedded"
],
"homepage": "https://github.com/justlep/nedb",
"repository": {
"type": "git",
"url": "https://github.com/justlep/nedb.git"
},
"dependencies": {
"@justlep/binary-search-tree": "^1.0.2"
},
"devDependencies": {
"async": "^3.2.6",
"chai": "^4.3.6",
"commander": "^9.2.0",
"eslint": "^8.13.0",
"eslint-plugin-log-filenames": "^1.0.6",
"exec-time": "0.0.2",
"mocha": "^9.2.2"
},
"scripts": {
"test": "mocha --reporter spec --timeout 10000 test/",
"lint": "eslint --max-warnings 5 --ext js lib/ benchmarks/ test_lac/ index.js"
},
"main": "index.js",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}