-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 949 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
{
"name": "localcache-meisam",
"version": "2.8.0",
"description": "Managing in-memory and local storage through RESTful API endpoints ",
"main": "src/models/index.js",
"type": "module",
"scripts": {
"start": "node ./src/app.js",
"dev": "DEBUG=app:* node --watch --trace-warnings src/app.js",
"lint": "eslint ./src '**/*.js'",
"test": "node src/models/test.js"
},
"bin": {
"localcache-meisam": "./src/app.js"
},
"keywords": [
"express",
"api",
"localstorage",
"in-memory",
"node"
],
"author": "maanimis",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"debug": "^4.3.6",
"express": "^4.19.2",
"node-localstorage": "^3.0.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"eslint": "^9.9.1",
"globals": "^15.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maanimis/localCache.git"
}
}