-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.05 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.05 KB
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
{
"publisher": "tejanium",
"name": "copy-github-permalink",
"displayName": "Copy Github Permalink",
"description": "Copy Github Permalink",
"icon": "img/ico.png",
"version": "1.0.3",
"homepage": "https://github.com/tejanium/vscode-copy-github-permalink/blob/master/README.md",
"bugs": {
"url": "https://github.com/tejanium/vscode-copy-github-permalink/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tejanium/vscode-copy-github-permalink"
},
"engines": {
"vscode": "^1.61.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:copy-github-permalink.copy"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "copy-github-permalink.copy",
"title": "Github Permalink: Copy"
}
],
"configuration": {
"title": "Copy Github Permalink",
"properties": {
"copy-github-permalink.branch": {
"type": "string",
"default": "origin/master",
"description": "Branch of where the permalink will pointed to. Use `HEAD` if you want to use your current active branch."
}
}
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode development",
"test-compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "webpack --mode development --watch --info-verbosity verbose",
"pretest": "yarn --frozen-lockfile && yarn compile && yarn test-compile && yarn lint",
"test": "node ./out/test/runTest.js",
"deploy": "vsce publish --yarn"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.1",
"@types/sinon": "^17.0.3",
"@types/vscode": "^1.61.0",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^6.8.0",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"mock-spawn": "^0.2.6",
"sinon": "^17.0.1",
"ts-loader": "^9.5.1",
"typescript": "^3.9.7",
"vsce": "^1.100.1",
"vscode-test": "^1.6.1",
"webpack": "^5.90.3",
"webpack-cli": "^4.9.0"
},
"dependencies": {
"await-spawn": "^4.0.2"
}
}