-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.39 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
{
"name": "verdaccio-storage-proxy",
"version": "0.0.11",
"description": "A verdaccio storage proxy to decouple database, search, packument, and tarball accesses.",
"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"
},
"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",
"eslint": "^6.6.0",
"jest": "^29.2.0",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"typescript": "^4.8.4"
},
"keywords": [
"verdaccio-storage-proxy"
],
"license": "BSD-3-Clause",
"repository": "https://github.com/openupm/verdaccio-storage-proxy",
"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",
"lint": "eslint \"**/*.{js,ts}\""
}
}