-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.75 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
{
"name": "js-test-outline",
"publisher": "sa2taka",
"displayName": "js-test-outline",
"description": "Outline for JavaScript/TypeScript test",
"version": "0.2.0",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/sa2taka/js-test-outline"
},
"main": "./dist/extension.js",
"contributes": {
"views": {
"test-outline-view": [
{
"type": "tree",
"id": "js-test-outline-view",
"name": "JS Test Outline",
"icon": "$(testing-show-as-list-icon)"
}
]
},
"configuration": {
"title": "JS Test Outline",
"properties": {
"js-test-outline.groupNames": {
"type": "array",
"default": [
"describe"
],
"description": "function name that creating test groups(e.g. describe)"
},
"js-test-outline.testNames": {
"type": "array",
"default": [
"it",
"test"
],
"description": "function name that declare test(e.g. test, it)"
},
"js-test-outline.syncExpand": {
"type": "boolean",
"default": true,
"description": "sync expanding and collapsing between editor and outline view"
},
"js-test-outline.enableExpandLeaf": {
"type": "boolean",
"default": true,
"description": "enable expanding and collapsing leaf node"
},
"js-test-outline.syncSelection": {
"type": "boolean",
"default": true,
"description": "sync the selection between editor and outline view"
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -ip . -w --outDir out",
"lint": "eslint src --ext ts",
"test": "jest"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/jest": "^29.2.4",
"@types/node": "16.x",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@vscode/test-electron": "^2.1.5",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"glob": "^8.0.3",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"typescript": "^4.7.4"
},
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact"
]
}