-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
executable file
·64 lines (64 loc) · 1.46 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "nestdb",
"description": "The JavaScript Database for Node.js, nwjs, Electron, and the browser",
"version": "2.0.0",
"license": "MIT",
"author": {
"name": "James M. Greene",
"email": "[email protected]",
"url": "http://jamesmgreene.github.io/"
},
"contributors": [
{
"name": "Louis Chatriot",
"email": "[email protected]"
}
],
"keywords": [
"database",
"datastore",
"embedded",
"nested",
"nestdb",
"nedb",
"nedb2",
"nedb3",
"nedb-core",
"newdb",
"mongo-lite",
"mongodb-lite"
],
"homepage": "https://www.npmjs.com/package/nestdb",
"repository": {
"type": "git",
"url": "[email protected]:JamesMGreene/nestdb.git"
},
"main": "index.js",
"scripts": {
"build": "node browser-version/build.js",
"test": "mocha"
},
"dependencies": {
"async": "^1.5.2",
"binary-search-tree": "^0.2.6",
"localforage": "^1.5.0",
"mkdirp": "^0.5.1",
"underscore": "~1.4.4"
},
"devDependencies": {
"bower": "^1.8.0",
"browserify": "^14.4.0",
"chai": "^4.1.1",
"commander": "^2.11.0",
"exec-time": "^0.0.4",
"fs-extra": "^4.0.1",
"get-stream": "^3.0.0",
"lodash.findindex": "^4.6.0",
"mocha": "^3.5.0",
"uglify-js": "^3.0.27"
},
"browser": {
"./lib/customUtils.js": "./browser-version/browser-specific/lib/customUtils.js",
"./lib/storage.js": "./browser-version/browser-specific/lib/storage.js"
}
}