-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.12 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@xlts.dev/verdaccio-google-cloud-storage",
"version": "0.2.2",
"description": "Google Cloud storage implementation for Verdaccio",
"keywords": [
"verdaccio",
"plugin",
"storage",
"google-cloud",
"datastore"
],
"author": "Juan Picado <juanpicado19@gmail.com>",
"contributors": [
{
"name": "Ed Clement",
"email": "ed@xlts.dev",
"url": "https://github.com/edclement"
}
],
"license": "MIT",
"homepage": "https://verdaccio.org",
"repository": {
"type": "git",
"url": "https://github.com/xlts-dev/verdaccio-google-cloud-storage"
},
"bugs": {
"url": "https://github.com/xlts-dev/verdaccio-google-cloud-storage/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"engines": {
"node": ">=18",
"npm": ">=9"
},
"dependencies": {
"@google-cloud/datastore": "7.2.0",
"@google-cloud/secret-manager": "4.2.0",
"@google-cloud/storage": "6.9.2",
"@verdaccio/commons-api": "10.2.0",
"@verdaccio/streams": "10.2.0"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "29.4.0",
"@types/node": "18.13.0",
"@verdaccio/eslint-config": "10.0.0",
"@verdaccio/types": "10.7.0",
"babel-eslint": "10.1.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"cross-env": "7.0.3",
"eslint": "6.8.0",
"jest": "29.4.2",
"lint-staged": "13.1.2",
"memory-fs": "0.5.0",
"prettier": "2.8.4",
"typescript": "4.9.5"
},
"scripts": {
"build": "npm run build:types && npm run build:js",
"build:js": "babel src/ --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"build:types": "tsc --emitDeclarationOnly --project src/tsconfig.json",
"coverage:publish": "codecov --root=../../ -F plugins",
"lint": "eslint \"**/*.{js,ts}\"",
"test:unit": "jest --env node --config ./jest.config.js",
"test": "npm run lint && npm run type-check && npm run test:unit",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
}
}