-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 738 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 738 Bytes
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
{
"name": "node-storage",
"version": "0.0.9",
"description": "Simple key-value file based store for node.js",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha -r should -R spec -t 1500"
},
"keywords": [
"key-value",
"store",
"storage",
"database",
"datastore",
"embedded"
],
"repository": {
"type": "git",
"url": "https://github.com/amativos/node-storage.git"
},
"homepage": "https://github.com/amativos/node-storage",
"author": "Antony Mativos <amativos@gmail.com>",
"license": "MIT",
"dependencies": {
"mkdirp": "^0.5.0",
"async": "^0.9.0"
},
"devDependencies": {
"mocha": "^1.19.0",
"rimraf": "^2.2.8",
"should": "^3.3.2"
}
}