forked from gsoft-inc/azure-devops-npm-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.13 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": "azure-devops-npm-auth",
"version": "1.1.1",
"description": "Authentication utility for private NPM registries hosted in Azure DevOps.",
"keywords": [
"azure",
"devops",
"npm",
"authentication",
"artifact",
"feed",
"vsts-npm-auth"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf ./dist && tsc",
"test": "mocha -r ts-node/register tests/**/*.test.ts"
},
"files": [
"dist"
],
"bin": {
"azure-devops-npm-auth": "dist/cli.js"
},
"author": "Yohan Belval",
"repository": "https://github.com/gsoft-inc/azure-devops-npm-auth.git",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^3.0.0",
"ini": "^1.3.8",
"minimist": "^1.2.5",
"openid-client": "^3.15.10",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/ini": "^1.3.30",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^7.0.2",
"@types/node": "^14.14.31",
"chai": "^4.3.0",
"cross-env": "^7.0.3",
"mocha": "^8.3.0",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.9"
}
}