forked from louischatriot/nedb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·45 lines (45 loc) · 1.06 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
{
"name": "gray-nedb",
"version": "1.8.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/grayhat12/nedb",
"repository": {
"type": "git",
"url": "git@github.com:grayhat12/nedb.git"
},
"dependencies": {
"async": "0.2.10",
"localforage": "^1.3.0",
"mkdirp": "~0.5.1",
"underscore": "^1.13.4"
},
"devDependencies": {
"chai": "^3.2.0",
"commander": "1.1.1",
"exec-time": "0.0.2",
"mocha": "^10.0.0",
"request": "^2.88.2",
"sinon": "1.3.x"
},
"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"
}