-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.69 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
{
"name": "binary-plist",
"displayName": "Binary Plist",
"version": "0.11.4",
"description": "Decodes binary plist files by opening a new tab with decoded XML and saving it back to binary on save.",
"categories": [
"Programming Languages"
],
"keywords": [
"binary",
"plist",
"xml"
],
"repository": {
"type": "git",
"url": "https://github.com/dnicolson/binary-plist"
},
"license": "MIT",
"author": {
"name": "David Nicolson"
},
"publisher": "dnicolson",
"main": "./out/extension.js",
"scripts": {
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"package": "npx vsce package --allow-star-activation",
"prepare": "husky install",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js",
"vscode:prepublish": "npm run compile",
"watch": "tsc -watch -p ./"
},
"contributes": {
"languages": [
{
"id": "plist",
"extensions": [
".plist"
]
}
]
},
"activationEvents": [
"onFileSystem:plist",
"*"
],
"lint-staged": {
"package.json": "sort-package-json"
},
"dependencies": {
"command-exists": "^1.2.9",
"simple-plist": "^1.3.0",
"tmp": "^0.2.1"
},
"devDependencies": {
"@types/command-exists": "^1.2.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.16",
"@types/tmp": "^0.2.3",
"@types/vscode": "^1.67.2",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@vscode/test-electron": "^2.4.0",
"eslint": "^8.7.0",
"glob": "^7.2.0",
"husky": "^7.0.4",
"lint-staged": "^13.2.1",
"mocha": "^9.2.0",
"sort-package-json": "^1.54.0",
"typescript": "^4.5.5"
},
"engines": {
"vscode": "^1.67.2"
},
"icon": "icon.png"
}