-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 1.97 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
{
"name": "yolocommit",
"displayName": "yoloCommit",
"author": "stilia.johny",
"license": "Unlicense license",
"publisher": "JohnStilia",
"description": "Can't be bothered to write a commit, yoloCommit dude.",
"icon": "resources/icon.png",
"preview": true,
"version": "0.2.0",
"sponsor": {
"url": "https://github.com/sponsors/stiliajohny"
},
"engines": {
"vscode": "^1.76.0"
},
"categories": [
"Other"
],
"keywords": [
"commit",
"random",
"message",
"git",
"automation",
"productivity",
"code quality",
"code hygiene",
"workflow",
"efficiency",
"developer tools",
"software development"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "yolocommit.randomCommit",
"title": "yoloCommit"
}
],
"keybindings": [
{
"command": "yolocommit.randomCommit",
"key": "ctrl+alt+c",
"mac": "cmd+alt+c"
}
],
"configuration": {
"properties": {
"yolocommit.push_to_remote": {
"type": "boolean",
"default": false,
"description": "Push to remote after commit"
},
"yolocommit.commit_prefix": {
"type": "string",
"default": "yoloCommit: ",
"description": "Prefix for commit message"
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js",
"deploy": "vsce publish --no-yarn"
},
"repository": {
"type": "https",
"url": "https://github.com/non-existing-organization/yoloCommit"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.76.0",
"@vscode/test-electron": "^2.2.0",
"@vscode/vsce": "^2.18.0",
"eslint": "^8.28.0",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"typescript": "^4.9.3"
},
"dependencies": {
"axios": "^1.3.4"
}
}