-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 1.77 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
{
"name": "editor-for-sbom",
"displayName": "Editor for SBOM",
"publisher": "Hitachi Solutions,Ltd. OSS Management Solution Group",
"description": "This is language support for spdx tag-value file.",
"version": "0.0.1",
"engines": {
"vscode": "^1.71.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"sbom",
"spdx"
],
"repository": {
"type": "git",
"url": "https://github.com/OLSV-oss/editor-for-sbom"
},
"license": "MIT",
"main": "./client/out/extension",
"activationEvents": [
"*"
],
"contributes": {
"languages": [
{
"id": "spdx",
"aliases": [
"spdx",
"spdx"
],
"extensions": [
".spdx"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "spdx",
"scopeName": "source.spdx",
"path": "./syntaxes/spdx.tmLanguage.json"
}
],
"themes": [
{
"label": "spdx tag value theme",
"uiTheme": "vs-dark",
"path": "./themes/spdx-color-theme.json"
}
],
"snippets": [
{
"language": "spdx",
"path": "./snippets.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint ./client/src ./server/src --ext .ts,.tsx --fix",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"pretest": "npm run compile && npm run lint",
"test": "cd server && npm run test && cd .."
},
"devDependencies": {
"@types/vscode": "^1.70.0",
"@types/glob": "^7.2.0",
"@types/node": "18.7.9",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"@types/jest": "^28.1.7",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"eslint": "^8.22.0",
"glob": "^8.0.3",
"typescript": "^4.7.4"
},
"private": true
}