-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.71 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "verdaccio-redis-storage",
"version": "1.2.4",
"description": "A Redis based storage plugin for Verdaccio.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"engines": {
"node": ">=14"
},
"dependencies": {
"@verdaccio/commons-api": "^10.2.0",
"@verdaccio/streams": "^10.2.0",
"commander": "^9.4.1",
"ioredis": "^5.2.3",
"js-yaml": "^4.1.0",
"loglevel": "^1.8.0",
"mkdirp": "^1.0.4",
"project-version": "^2.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/express": "^4.17.14",
"@types/jest": "^29.1.2",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@verdaccio/babel-preset": "^10.0.0",
"@verdaccio/eslint-config": "^10.0.0",
"@verdaccio/types": "^10.7.0",
"cross-env": "^7.0.3",
"dir-compare": "^4.0.0",
"eslint": "^6.6.0",
"ioredis-mock": "^8.2.2",
"jest": "^29.2.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"typescript": "^4.8.4"
},
"keywords": [
"verdaccio-redis-storage",
"verdaccio",
"plugin",
"redis",
"storage"
],
"license": "BSD-3-Clause",
"repository": "https://github.com/openupm/verdaccio-redis-storage",
"author": "Favo Yang <https://github.com/favoyang>",
"scripts": {
"build": "npm run build:types && npm run build:js",
"build:js": "babel src/ --out-dir lib --extensions \".ts,.tsx\"",
"build:types": "tsc --emitDeclarationOnly",
"test": "cross-env NODE_ENV=test jest --runInBand",
"lint": "eslint \"**/*.{js,ts}\""
},
"bin": {
"verdaccio-redis": "./bin/verdaccio-redis"
}
}