-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
94 lines (94 loc) · 3 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
91
92
93
94
{
"name": "vscode-commit-reminder",
"displayName": "Commit Reminder",
"description": "Periodically notify to commit new changes",
"publisher": "Kurozero",
"version": "0.3.0",
"license": "MIT",
"icon": "assets/icon-128x128.png",
"engines": {
"vscode": "^1.46.0"
},
"homepage": "https://github.com/Pepijn98/vscode-commit-reminder#readme",
"repository": {
"type": "git",
"url": "https://github.com/Pepijn98/vscode-commit-reminder.git"
},
"bugs": {
"url": "https://github.com/Pepijn98/vscode-commit-reminder/issues"
},
"author": {
"email": "[email protected]",
"name": "Pepijn van den Broek",
"url": "https://vdbroek.dev"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./build/extension.js",
"scripts": {
"publish": "vsce publish",
"pack": "vsce package --out ./pkgs",
"build": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run build",
"test": "code-insiders --extensionDevelopmentPath=\"$(pwd)\"",
"format": "prettier --write \"src/**/*.{ts,js}\"",
"lint": "eslint \"src/**/*.{ts,js}\" --fix",
"pretty": "npm run format && npm run lint",
"clean": "rm -rf ./node_modules ./package-lock.json"
},
"dependencies": {
"simple-git": "^2.21.0",
"yukikaze": "^1.0.0"
},
"devDependencies": {
"@types/node": "^14.14.3",
"@types/vscode": "1.46.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-import": "^2.22.1",
"gts": "^3.0.2",
"prettier": "^2.1.2",
"typescript": "^4.0.3",
"vsce": "^1.81.1",
"vscode-test": "^1.4.0"
},
"contributes": {
"configuration": {
"title": "Commit Reminder",
"properties": {
"commitReminder.intervalUnit": {
"type": "string",
"default": "minutes",
"description": "Set the inteval unit",
"enum": [
"seconds",
"minutes",
"hours"
]
},
"commitReminder.interval": {
"type": "number",
"default": 30,
"description": "Set the interval time"
},
"commitReminder.minimumFileChanges": {
"type": "number",
"default": 2,
"description": "Set the minimum file changes"
},
"commitReminder.minimumChanges": {
"type": "number",
"default": 10,
"description": "Set the minimum changes(Insertions + Deletions)"
}
}
}
}
}