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.
80 lines
2.0 KiB
80 lines
2.0 KiB
{
|
|
"name": "@seald-io/nedb",
|
|
"version": "2.0.0",
|
|
"author": {
|
|
"name": "Timothée Rebours",
|
|
"email": "tim@seald.io",
|
|
"url": "https://www.seald.io/"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Louis Chatriot",
|
|
"email": "louis.chatriot@gmail.com"
|
|
},
|
|
{
|
|
"name": "Timothée Rebours",
|
|
"email": "tim@seald.io",
|
|
"url": "https://www.seald.io/"
|
|
}
|
|
],
|
|
"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": "^7.2.0",
|
|
"events": "^3.3.0",
|
|
"jquery": "^3.6.0",
|
|
"karma": "^6.3.2",
|
|
"karma-chai": "^0.1.0",
|
|
"karma-chrome-launcher": "^3.1.0",
|
|
"karma-junit-reporter": "^2.0.1",
|
|
"karma-mocha": "^2.0.1",
|
|
"karma-source-map-support": "^1.4.0",
|
|
"mocha": "^8.4.0",
|
|
"mocha-junit-reporter": "^2.0.0",
|
|
"path-browserify": "^1.0.1",
|
|
"process": "^0.11.10",
|
|
"semver": "^7.3.5",
|
|
"source-map-loader": "^2.0.2",
|
|
"standard": "^16.0.3",
|
|
"terser-webpack-plugin": "^5.1.2",
|
|
"timers-browserify": "^2.0.12",
|
|
"util": "^0.12.3",
|
|
"webpack": "^5.37.0",
|
|
"webpack-cli": "^4.7.0",
|
|
"xvfb-maybe": "^0.2.1"
|
|
},
|
|
"scripts": {
|
|
"lint": "standard",
|
|
"test": "mocha --reporter spec --timeout 10000",
|
|
"build:browser": "webpack && webpack --optimization-minimize",
|
|
"pretest:browser": "npm run build:browser",
|
|
"test:browser": "xvfb-maybe karma start karma.conf.local.js"
|
|
},
|
|
"main": "index.js",
|
|
"browser": "browser-version/out/nedb.min.js",
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"standard": {
|
|
"ignore": [
|
|
"browser-version/out"
|
|
]
|
|
}
|
|
}
|
|
|