-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
125 lines (125 loc) · 2.65 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "pairodoro",
"displayName": "Pairodoro",
"description": "Paired Programming Timer",
"publisher": "FordLabs",
"license": "MIT",
"version": "1.4.1",
"icon": "logo.png",
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/FordLabs/pairodoro.git"
},
"activationEvents": [
"onCommand:extension.pairodoro"
],
"keywords": [
"paired programming",
"pair",
"pairing",
"pomodoro"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.pairodoro",
"title": "Pairodoro"
}
],
"keybindings": [
{
"command": "extension.pairodoro",
"key": "alt+ctrl+p",
"mac": "alt+cmd+p"
}
],
"configuration": {
"type": "object",
"title": "Pairodoro Config",
"properties": {
"pairodoro.player1": {
"type": "object",
"description": "User definition for first pair",
"default": {
"name": "Player 1",
"color": "#fff"
},
"properties": {
"name": {
"type": "string",
"default": "Player 1",
"description": "Name of first pair"
},
"color": {
"type": "string",
"default": "#468b5d",
"description": "Text color for first pair"
}
}
},
"pairodoro.player2": {
"type": "object",
"description": "User definition for second pair",
"default": {
"name": "Player 2",
"color": "#fff"
},
"properties": {
"name": {
"type": "string",
"default": "Player 2",
"description": "Name of second pair"
},
"color": {
"type": "string",
"default": "#408b5d",
"description": "Text color for second pair"
}
}
},
"pairodoro.seconds": {
"type": "integer",
"default": "120",
"description": "Seconds until pair swap"
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "yarn run compile && node ./node_modules/vscode/bin/test",
"format": "find src/ -type f -iname '*.ts' -or -iname '*.d.ts' -or -iname '*.js' | xargs prettier --write --parser typescript"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.1",
"vscode": "^1.1.28"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts*": [
"prettier --write --parser typescript",
"git add"
]
}
}