forked from louischatriot/nedb
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·47 lines (47 loc) · 1.09 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
{
"name": "nedb-core",
"version": "3.0.6",
"author": {
"name": "Louis Chatriot",
"email": "[email protected]"
},
"contributors": [
"Louis Chatriot",
"Pooya Parsa <[email protected]>"
],
"description": "File-based embedded data store for node.js",
"keywords": [
"database",
"datastore",
"embedded"
],
"homepage": "https://github.com/nedb3/nedb3",
"repository": {
"type": "git",
"url": "[email protected]:nedb3/nedb3.git"
},
"dependencies": {
"async": "latest",
"localforage": "latest",
"mkdirp": "latest",
"underscore": "latest",
"is": "latest"
},
"devDependencies": {
"chai": "latest",
"mocha": "latest",
"request": "latest",
"sinon": "latest",
"exec-time": "latest",
"commander": "latest"
},
"scripts": {
"test": "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"
}