mirror of https://github.com/seald/nedb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.2 KiB
55 lines
1.2 KiB
{
|
|
"name": "nedb",
|
|
"version": "1.8.0",
|
|
"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/louischatriot/nedb",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:louischatriot/nedb.git"
|
|
},
|
|
"dependencies": {
|
|
"@seald-io/binary-search-tree": "^1.0.0",
|
|
"async": "0.2.10",
|
|
"localforage": "^1.9.0",
|
|
"underscore": "^1.13.1"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.3.4",
|
|
"commander": "1.1.1",
|
|
"exec-time": "0.0.2",
|
|
"mocha": "^8.4.0",
|
|
"request": "2.9.x",
|
|
"semver": "^7.3.5",
|
|
"sinon": "1.3.x",
|
|
"standard": "^16.0.3"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha --reporter spec --timeout 10000"
|
|
},
|
|
"main": "index.js",
|
|
"browser": {
|
|
"./lib/customUtils.js": "./browser-version/browser-specific/lib/customUtils.js",
|
|
"./lib/storage.js": "./browser-version/browser-specific/lib/storage.js"
|
|
},
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"standard": {
|
|
"ignore": [
|
|
"browser-version"
|
|
]
|
|
}
|
|
}
|
|
|