-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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
{
"name": "verdaccio-bitbucket-server",
"version": "1.3.4",
"description": "Verdaccio Authentication Plugin via Bitbucket Server",
"main": "lib/index.js",
"files": [
"/lib"
],
"scripts": {
"clean:build": "rimraf ./lib",
"build": "babel ./src --out-dir lib",
"lint": "eslint ./src",
"test": "jest",
"prebuild": "npm run clean:build",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oeph/verdaccio-bitbucket-server.git"
},
"keywords": [
"verdaccio",
"verdaccio-plugin",
"bitbucket",
"bitbucket-server"
],
"author": "oeph",
"license": "MIT",
"bugs": {
"url": "https://github.com/oeph/verdaccio-bitbucket-server/issues"
},
"homepage": "https://github.com/oeph/verdaccio-bitbucket-server#readme",
"engines": {
"node": "*"
},
"dependencies": {
"axios": "^0.21.1",
"lru-cache": "^5.1.1"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-plugin-jest": "^22.19.0",
"jest": "^26.4.2",
"rimraf": "^2.6.3"
}
}