-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.51 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
{
"name": "typed-test-vscode",
"displayName": "Typed Test",
"description": "Testing made simple.",
"version": "0.0.11",
"publisher": "tylors",
"author": {
"email": "[email protected]",
"name": "Tylor Steinberger"
},
"repository": {
"type": "git",
"url": "https://github.com/TylorS/typed-test-vscode"
},
"engines": {
"vscode": "^1.24.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:typescript",
"onLanguage:typescriptreact"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "TypedTest.watchTests",
"title": "Typed Test: Watch Tests"
},
{
"command": "TypedTest.runTests",
"title": "Typed Test: Run Tests"
},
{
"command": "TypedTest.stopWatching",
"title": "TypedTest: Stop Watching Tests"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/clear-require": "2.0.0",
"@types/glob": "5.0.35",
"@types/node": "7.0.43",
"@types/resolve": "0.0.8",
"typescript": "2.9.2",
"vsce": "1.43.0",
"vscode": "1.1.18"
},
"dependencies": {
"@typed/test": "7.2.2",
"clear-require": "2.0.0",
"glob": "7.1.2",
"resolve": "1.8.1",
"typed-colors": "1.0.0"
}
}