-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.2 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
{
"name": "jsondbfs",
"description": "JSON Filesystem Database.",
"author": "Manuel Martins <[email protected]>",
"version": "1.0.3",
"license": "Apache-2.0",
"engine": "node >= 0.12.0",
"main": "./index",
"scripts": {
"test": "rm /tmp/*.json; rm /tmp/*.lock; cp test/big.json /tmp/; mocha test/"
},
"repository": {
"type": "git",
"url": "git://github.com/mcmartins/jsondbfs.git"
},
"bugs": {
"url": "https://github.com/mcmartins/jsondbfs/issues"
},
"preferGlobal": "true",
"keywords": [
"json",
"jsonfs",
"jsondb",
"jsondbfs",
"db",
"database",
"nosql",
"memory",
"inmemory",
"driver",
"dbdriver",
"driverdb",
"storage",
"storagedb",
"sync",
"flush",
"disk",
"io",
"fs",
"file system",
"crud",
"prototyping",
"prototypingdb",
"mongodb",
"mongo",
"async",
"lock"
],
"dependencies": {
"async": "2.1.x",
"babel-polyfill": "6.23.x",
"json-criteria": "2.6.x",
"lockfile": "1.0.x",
"underscore": "1.8.x",
"uuid": "3.0.x"
},
"devDependencies": {
"codeclimate-test-reporter": "0.4.x",
"istanbul": "0.4.x",
"mocha": "3.2.x"
}
}