-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 747 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 747 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
{
"name": "nodememorydb",
"author": "tinhour <fangfeng3@huawei.com>",
"version": "1.0.1",
"describe": "A simple in-memory database service built with Node.js",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2",
"forever": "^0.15.3"
},
"scripts": {
"foreverstart": "forever foreverstart.json",
"start": "node index.js"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tinhour/nodeMemoryDB.git"
},
"keywords": [
"memoryDB",
"nodejs",
"simpleDatabase",
"database"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tinhour/nodeMemoryDB/issues"
},
"homepage": "https://github.com/tinhour/nodeMemoryDB#readme"
}