-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
49 lines (49 loc) · 1 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
{
"name": "node-persist",
"version": "4.0.4",
"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/.bin/mocha tests/"
},
"repository": {
"type": "git",
"url": "https://github.com/simonlast/node-persist"
},
"keywords": [
"node",
"persist",
"storage"
],
"engines": {
"node": ">=10.12.0"
},
"contributors": [
{
"name": "Simon Last",
"email": "[email protected]",
"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": {
"p-limit": "^3.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^10.2.0",
"rimraf": "^2.4.3"
}
}