-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
150 lines (150 loc) · 4.23 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "ooxml-validator-vscode",
"displayName": "OOXML Validator",
"description": "A VS Code extension for validating Office Open XML files",
"icon": "assets/icon.png",
"version": "1.6.0",
"publisher": "mikeebowen",
"homepage": "/~https://github.com/mikeebowen/ooxml-validator-vscode/blob/master/README.md",
"repository": {
"type": "git",
"url": "/~https://github.com/mikeebowen/ooxml-validator-vscode.git"
},
"bugs": {
"url": "/~https://github.com/mikeebowen/ooxml-validator-vscode/issues"
},
"engines": {
"vscode": "^1.59.0"
},
"keywords": [
"ooxml"
],
"categories": [
"Other",
"Testing"
],
"activationEvents": [
"onCommand:ooxml-validator-vscode.validateOOXML"
],
"main": "./dist/extension.js",
"extensionDependencies": [
"ms-dotnettools.vscode-dotnet-runtime"
],
"contributes": {
"configuration": {
"title": "OOXML",
"properties": {
"ooxml.fileFormatVersion": {
"type": "number",
"description": "Number that specifies the version of Office to use to validate OOXML files. Must be in [2007, 2010, 2013, 2016, 2019, 2021, 365]. Defaults to 365 (Microsoft365)."
},
"ooxml.outPutFilePath": {
"type": "string",
"description": "Specifies the absolute path to write the output of the validator. Path MUST be absolute"
},
"ooxml.overwriteLogFile": {
"type": "boolean",
"default": false,
"description": "If true, the log file will overwrite previous log files of the same name if they exist, default is false."
},
"ooxml.dotNetPath": {
"type": "string",
"description": "The absolute path to the .Net Runtime"
}
}
},
"commands": [
{
"command": "ooxml-validator-vscode.validateOOXML",
"title": "Validate OOXML",
"when": "resourceLangId == ooxml",
"icon": {
"dark": "./assets/clipboard-check-solid-dark.svg",
"light": "./assets/clipboard-check-solid-light.svg"
}
}
],
"languages": [
{
"id": "ooxml",
"extensions": [
"docx",
"docm",
"dotm",
"dotx",
"pptx",
"pptm",
"potm",
"potx",
"ppam",
"ppsm",
"ppsx",
"xlsx",
"xlsm",
"xltm",
"xltx",
"xlam"
]
}
],
"menus": {
"explorer/context": [
{
"when": "resourceLangId == ooxml",
"command": "ooxml-validator-vscode.validateOOXML",
"title": "Validate OOXML",
"group": "3_compare"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack --mode development",
"watch": "webpack --mode development --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "npm run test-compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"coverage": "rimraf .nyc_output && node ./out/test/runCoverage.js"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.15",
"@types/form-data": "^2.5.0",
"@types/glob": "^7.1.4",
"@types/istanbul": "^0.4.30",
"@types/lodash": "^4.14.172",
"@types/mocha": "^9.1.0",
"@types/node": "^12.20.11",
"@types/sinon": "^9.0.11",
"@types/vscode": "^1.59.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"@vscode/test-electron": "^2.3.8",
"chai": "^4.3.4",
"chai-shallow-deep-equal": "^1.4.6",
"coveralls": "^3.1.1",
"electron-rebuild": "^3.2.9",
"eslint": "^7.21.0",
"glob": "^7.1.6",
"lodash": "^4.17.21",
"mocha": "^11.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sinon": "^19.0.2",
"source-map-support": "^0.5.19",
"ts-loader": "^8.0.14",
"ts-node": "^10.2.0",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0"
},
"dependencies": {
"csv-writer": "^1.6.0"
}
}