forked from simonlast/node-persist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1005 Bytes
/
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": "node-persist",
"version": "0.0.11",
"description": "Super-easy (and fast) persistent data structures in Node.js, modeled after HTML5 localStorage",
"main": "./src/node-persist.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha tests/"
},
"repository": {
"type": "git",
"url": "https://github.com/simonlast/node-persist"
},
"keywords": [
"node",
"persist",
"storage"
],
"contributors": [
{
"name": "Simon Last",
"email": "hello@simonlast.org",
"url": "http://simonlast.org/"
},
{
"name": "Ben Monro",
"url": "https://github.com/benmonro"
},
{
"name": "Aziz Khoury",
"url": "https://github.com/akhoury"
}
],
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"mkdirp": "~0.5.1",
"q": "~1.1.1"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.3.3",
"rimraf": "^2.4.3"
}
}