-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.45 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
{
"name": "vscode-to-toml",
"displayName": "Convert to TOML",
"description": "Converts inferior formats to toml",
"version": "0.0.4",
"repository": {
"type": "git",
"url": "git+https://github.com/jonathanmh/vscode-to-toml"
},
"publisher": "jonathanmh",
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"Other"
],
"icon": "logo/logo.png",
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "vscode-to-toml.current-file.convert-json",
"title": "to TOML: convert current file (JSON)"
},
{
"command": "vscode-to-toml.current-file.convert-yaml",
"title": "to TOML: convert current file (YAML)"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^10.0.2",
"@types/node": "18.x",
"@types/vscode": "^1.93.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vscode/test-electron": "^2.3.4",
"eslint": "^8.57.1",
"glob": "^10.3.3",
"globals": "^15.11.0",
"mocha": "^10.2.0",
"typescript": "^5.2.2",
"typescript-eslint": "^8.11.0"
},
"dependencies": {
"json2toml": "^6.1.1",
"yaml": "^2.6.0"
}
}