Regenerated json files

This commit is contained in:
Dag 2023-01-19 23:26:20 +01:00
parent 2891bfe000
commit 35da45bc3c
3 changed files with 2589 additions and 252 deletions

2549
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -2,25 +2,25 @@
"name": "swmf-grammar", "name": "swmf-grammar",
"displayName": "SWMF Configuration", "displayName": "SWMF Configuration",
"description": "Syntax highlights and outline view for SWMF configuration files", "description": "Syntax highlights and outline view for SWMF configuration files",
"version": "1.0.0", "version": "1.0.1",
"publisher": "svaberg", "publisher": "svaberg",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/svaberg/SWMF-grammar" "url": "https://github.com/svaberg/SWMF-grammar.git"
}, },
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"vscode": "^1.41.0" "vscode": "^1.74.0"
}, },
"categories": [ "categories": [
"Programming Languages", "Programming Languages",
"Formatters" "Formatters"
], ],
"icon": "images/icon.png",
"main": "./out/extension.js",
"activationEvents": [ "activationEvents": [
"onLanguage:swmf-config" "onLanguage:swmf-config"
], ],
"icon": "images/icon.png",
"main": "./out/extension.js",
"contributes": { "contributes": {
"languages": [ "languages": [
{ {
@ -48,11 +48,26 @@
"vscode:prepublish": "npm run compile", "vscode:prepublish": "npm run compile",
"compile": "tsc -p ./", "compile": "tsc -p ./",
"watch": "tsc -watch -p ./", "watch": "tsc -watch -p ./",
"pretest": "npm run compile" "pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
}, },
"devDependencies": { "devDependencies": {
"typescript": "^3.7.5", "@types/vscode": "^1.74.0",
"vscode-test": "^1.3.0", "@types/glob": "^8.0.0",
"@types/vscode": "^1.41.0" "@types/mocha": "^10.0.1",
} "@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"typescript": "^4.9.3",
"@vscode/test-electron": "^2.2.0"
},
"bugs": {
"url": "https://github.com/svaberg/SWMF-grammar/issues"
},
"homepage": "https://github.com/svaberg/SWMF-grammar#readme",
"author": "Dag Evensberget"
} }

View File

@ -1,16 +1,17 @@
{ {
"compilerOptions": { "compilerOptions": {
"module": "commonjs", "module": "commonjs",
"target": "es6", "target": "ES2020",
"outDir": "out", "outDir": "out",
"lib": [ "lib": [
"es6" "ES2020"
], ],
"sourceMap": true, "sourceMap": true,
"rootDir": "src" "rootDir": "src",
}, "strict": true /* enable all strict type-checking options */
"exclude": [ /* Additional Checks */
"node_modules", // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
".vscode-test" // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
] // "noUnusedParameters": true, /* Report errors on unused parameters. */
}
} }