-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
56 lines (56 loc) · 1.14 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
{
"name": "verdaccio-bitbucket",
"author": {
"name": "Idan Gozlan",
"email": "[email protected]"
},
"contributors": [
{
"name": "Beto Sales",
"url": "https://github.com/betosales"
}
],
"scripts": {
"lint": "eslint ./src --fix",
"test": "jest",
"prepare": "husky install"
},
"main": "src/index.js",
"version": "3.0.1",
"description": "Verdaccio module to authenticate users via Bitbucket",
"keywords": [
"sinopia",
"verdaccio",
"bitbucket",
"atlassian",
"auth",
"node",
"nodejs",
"js",
"javascript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/idangozlan/verdaccio-bitbucket.git"
},
"engines": {
"node": "*"
},
"dependencies": {
"axios": "^0.21.0",
"hash-wasm": "^4.9.0",
"node-cache": "^5.1.0",
"redis": "^3.0.2"
},
"devDependencies": {
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.2",
"husky": "^8.0.0",
"jest": "^28.1.3",
"moxios": "^0.4.0",
"redis-mock": "^0.56.3"
}
}