-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.46 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"preview": true,
"publisher": "vymarkov",
"name": "add-gitlab-npm-token",
"displayName": "GitLab: Configure access to GitLab NPM Registry",
"description": "It allows to configure access to GitLab NPM Registry from your workstation whenever you are working on repo where npm dependencies should be fetched from Gitlab NPM registry",
"version": "0.0.11",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vymarkov/add-gitlab-npm-token"
},
"keywords": [
"gitlab",
"npm",
"registry"
],
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"SCM Providers"
],
"activationEvents": [
"onCommand:add-gitlab-npm-token.find-pkg-scope-with-gitlab-npm-registry",
"onCommand:add-gitlab-npm-token.setToken",
"onCommand:add-gitlab-npm-token.openUserSettings"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "add-gitlab-npm-token.find-pkg-scope-with-gitlab-npm-registry",
"title": "GitLab NPM Registry: Configure access to GitLab NPM Registry"
},
{
"command": "add-gitlab-npm-token.setToken",
"title": "GitLab NPM Registry: Set Gitlab Personal Access Token"
},
{
"command": "add-gitlab-npm-token.openUserSettings",
"title": "GitLab NPM Registry: Open User Settings page to add a personal access token"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"precompile": "npm run lint",
"compile": "npx tsc -p ./",
"pkg": "npx vsce package",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/git-url-parse": "^9.0.0",
"@types/glob": "^7.1.3",
"@types/lodash.isempty": "^4.4.6",
"@types/mocha": "^8.0.0",
"@types/node": "^12.11.7",
"@types/vscode": "^1.49.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.16.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"ovsx": "0.1.0-next.72b2e9d",
"ts-mocha": "^8.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.0.5",
"vsce": "^1.83.0",
"vscode-test": "^1.4.0"
},
"dependencies": {
"@gitbeaker/node": "^25.2.0",
"@vymarkov/gitlab-workflow": "^3.6.0",
"@zkochan/npm-conf": "^2.0.1",
"dotenv": "^8.2.0",
"execa": "^4.1.0",
"git-url-parse": "^11.4.0",
"lodash.isempty": "^4.4.0",
"p-timeout": "^4.1.0",
"read-pkg": "^5.2.0",
"registry-auth-token": "^4.2.0"
},
"extensionDependencies": [
"vscode.git"
]
}