-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.07 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.07 KB
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
{
"name": "systemtap-syntax",
"displayName": "SystemTap",
"license": "MIT",
"description": "Language support for SystemTap script",
"version": "0.5.0",
"publisher": "nzh21",
"repository": {
"type": "git",
"url": "git@github.com:nzh63/systemtap-syntax.git"
},
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:systemtap"
],
"main": "./out/extension.js",
"browser": "./out-web/extension.js",
"contributes": {
"languages": [
{
"id": "systemtap",
"aliases": [
"SystemTap",
"systemtap"
],
"extensions": [
".stp"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "systemtap",
"scopeName": "source.systemtap",
"path": "./syntaxes/systemtap.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.block.c": "c"
},
"tokenTypes": {
"meta.embedded.block.c": "other"
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run package-web",
"compile": "tsc -p ./",
"lint": "eslint ./src --ext .js,.ts && tsc --noEmit",
"watch": "tsc -watch -p ./",
"package": "yarn run compile && vsce package --yarn",
"pretest": "yarn run compile",
"test": "node ./out/test/runTest.js",
"compile-web": "webpack",
"watch-web": "webpack --watch",
"package-web": "webpack --mode production --devtool hidden-source-map",
"test-web": "yarn compile-web && vscode-test-web --extensionDevelopmentPath=. --extensionTestsPath=out-web/test/suite/index.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^14.0.0",
"@types/vscode": "^1.60.0",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"@vscode/test-web": "^0.0.27",
"assert": "^2.0.0",
"eslint": "^8.17.0",
"glob": "^7.1.4",
"mocha": "^10.0.0",
"process": "^0.11.10",
"ts-loader": "^9.2.2",
"typescript": "^4.7.0",
"vsce": "^2.9.2",
"vscode-test": "^1.2.0",
"webpack": "^5.94.0",
"webpack-cli": "^4.7.0"
}
}