forked from louischatriot/nedb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·50 lines (50 loc) · 1.18 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
{
"name": "@rmanibus/nedb",
"version": "2.0.0-beta.0",
"type": "module",
"author": {
"name": "Louis Chatriot",
"email": "louis.chatriot@gmail.com"
},
"contributors": [
"Louis Chatriot"
],
"description": "File-based embedded data store for node.js",
"keywords": [
"database",
"datastore",
"embedded"
],
"homepage": "https://github.com/rmanibus/nedb",
"repository": {
"type": "git",
"url": "git@github.com:rmanibus/nedb.git"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@rmanibus/binary-search-tree": "^0.3.3",
"async": "^1.5.2",
"localforage": "^1.9.0",
"mkdirp": "^1.0.4",
"underscore": "^1.13.1"
},
"devDependencies": {
"chai": "^4.3.4",
"commander": "9.0.0",
"exec-time": "0.0.4",
"mocha": "^10.1",
"prettier": "^2.7.1",
"sinon": "^14.0"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec --timeout 10000"
},
"main": "index",
"browser": {
"./lib/customUtils.js": "./browser-version/browser-specific/lib/customUtils.js",
"./lib/storage.js": "./browser-version/browser-specific/lib/storage.js"
},
"license": "SEE LICENSE IN LICENSE"
}