-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"name": "verdaccio-mongodb",
"version": "1.2.1",
"description": "MongoDB Authentication plugin for Verdaccio",
"author": "Jörg Rech <[email protected]>",
"license": "MIT",
"repository": "joergrech/verdaccio-mongodb",
"keywords": [
"Authentication",
"Auth",
"Plugin",
"Verdaccio",
"MongoDB",
"DocumentDB"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"@verdaccio/commons-api": "^10.2.0",
"bcryptjs": "^2.4.3",
"lru-cache": "^7.10.1",
"mongodb": "^4.6.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^28.1.1",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@verdaccio/babel-preset": "^10.0.0",
"@verdaccio/eslint-config": "^10.0.0",
"@verdaccio/types": "^10.4.2",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"standard-version": "^9.5.0",
"typescript": "^4.7.3"
},
"scripts": {
"release": "standard-version -a -s",
"build": "npm run build:types && npm run build:js",
"build:js": "babel src/ --out-dir lib --extensions \".js,.ts,.tsx\"",
"build:types": "tsc --emitDeclarationOnly",
"test": "jest",
"lint": "eslint \"**/*.{js,ts}\"",
"buildall": "npm run lint && npm run test && npm run build:types && npm run build:js"
}
}