The JavaScript Database, for Node.js, nw.js, electron and the browser
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.
 
 
nedb/package.json

46 lines
1.1 KiB

{
"name": "nedb",
"version": "1.4.2",
"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": {
"async": "0.2.10",
"binary-search-tree": "0.2.4",
"localforage": "^1.3.0",
"mkdirp": "~0.5.1",
"underscore": "~1.4.4"
},
"devDependencies": {
"chai": "^3.2.0",
"mocha": "1.4.x",
"request": "2.9.x",
"sinon": "1.3.x",
"exec-time": "0.0.2",
"commander": "1.1.1"
},
"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"
}