-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 814 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 814 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
34
{
"name": "axe-cache",
"description": "axios cache module with sqlite or leveldb backend",
"author": {
"name": "Georgy Malkov",
"url": "https://github.com/goshander"
},
"main": "main.js",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "nodemon -e js --exec 'npm run test'",
"test": "tap ./test.spec.js"
},
"dependencies": {
"axios": "^0.27.2",
"cachios": "^4.0.0",
"level": "^7.0.0",
"sqlite": "^4.1.2",
"sqlite3": "^5.1.2"
},
"devDependencies": {
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"nodemon": "^2.0.20",
"tap": "^16.3.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}