-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.45 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
{
"name": "verdaccio-azure-ad-login",
"version": "1.1.1",
"description": "Let your users authenticate into Verdaccio using Azure AD OAuth",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"@verdaccio/commons-api": "^9.7.1",
"axios": "^0.21.1",
"querystring": "^0.2.1"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@verdaccio/babel-preset": "^9.7.1",
"@verdaccio/eslint-config": "^9.3.2",
"@verdaccio/types": "^9.7.2",
"eslint": "^6.8.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"standard-version": "^8.0.2",
"typescript": "^3.9.9",
"verdaccio": "^4.11.0"
},
"keywords": [
"verdaccio,azure,active,directory,oauth,login"
],
"license": "MIT",
"repository": "IhToN/verdaccio-azure-ad-login",
"author": "Antonio Terrero Algaba <atalgaba@gmail.com>",
"scripts": {
"start": "verdaccio -c ./config/dev.yaml",
"build": "npm run build:types && npm run build:js",
"release": "standard-version -a",
"deploy": "git push --follow-tags origin master && npm publish --registry=https://registry.npmjs.org",
"build:js": "babel src/ --out-dir lib --extensions \".ts,.tsx\"",
"build:types": "tsc --emitDeclarationOnly",
"test": "jest",
"lint": "eslint \"**/*.{js,ts}\""
}
}