-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 2.22 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
{
"name": "jscope",
"repository": {
"type": "git",
"url": "https://github.com/mohganji/jscope"
},
"description": "VSCode extension for async coverage",
"version": "0.0.1",
"publisher": "mohganji",
"engines": {
"vscode": "^1.32.0"
},
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"productIconThemes": [
{
"id": "async-coverage-icons",
"label": "Async Coverage Icons",
"path": "./media/icons/async-coverage-product-icon-theme.json"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "jscope-icon-menu",
"title": "JScope",
"icon": "media/area.png"
}
]
},
"commands": [
{
"command": "jscope.new-coverage",
"title": "JScope:Run Promise Coverage"
},
{
"command": "jscope.annotate-editor",
"title": "JScope: Annotate open editor"
},
{
"command": "jscope.peek-references",
"title": "Open Promise References"
},
{
"command": "jscope.peek-links",
"title": "Show Links"
}
],
"views": {
"jscope-icon-menu": [
{
"id": "jscope.main-menu-webview",
"type": "webview",
"name": "Main Menu"
}
]
}
},
"scripts": {
"build": "npm run build:main && npm run compile",
"build:main": "npm i",
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./",
"test:integration": "node ./out/test/runTests.js integration",
"test:unit": "node ./out/test/runTests.js unit",
"test": "npm run test:unit && npm run test:integration",
"build-n-test": "npm run build && npm run test",
"clean:test": "rm -r out/test",
"clean": "rm -r ./out"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/istanbul": "^0.4.30",
"@types/mocha": "^9.0.0",
"@types/node": "^12.12.0",
"@types/vscode": "^1.32.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0",
"mocha": "^9.1.2",
"typescript": "^4.2.2",
"webfont": "^11.2.26"
},
"dependencies": {
"@vscode/test-electron": "^1.6.2",
"bluebird": "^3.7.2",
"glob": "^7.2.0",
"istanbul": "^0.4.5",
"nyc": "^15.1.0",
"shelljs": "^0.8.5",
"simple-json-log": "^0.6.2",
"vscode-test": "^1.6.1"
}
}