Regenerated json files
This commit is contained in:
parent
2891bfe000
commit
35da45bc3c
2685
package-lock.json
generated
2685
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
125
package.json
125
package.json
|
@ -1,58 +1,73 @@
|
|||
{
|
||||
"name": "swmf-grammar",
|
||||
"displayName": "SWMF Configuration",
|
||||
"description": "Syntax highlights and outline view for SWMF configuration files",
|
||||
"version": "1.0.0",
|
||||
"publisher": "svaberg",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/svaberg/SWMF-grammar"
|
||||
},
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"vscode": "^1.41.0"
|
||||
},
|
||||
"categories": [
|
||||
"Programming Languages",
|
||||
"Formatters"
|
||||
],
|
||||
"icon": "images/icon.png",
|
||||
"main": "./out/extension.js",
|
||||
"activationEvents": [
|
||||
"onLanguage:swmf-config"
|
||||
],
|
||||
"contributes": {
|
||||
"languages": [
|
||||
{
|
||||
"id": "swmf-config",
|
||||
"aliases": [
|
||||
"SWMF Config",
|
||||
"swmf"
|
||||
],
|
||||
"extensions": [
|
||||
".in",
|
||||
".IN"
|
||||
],
|
||||
"configuration": "./language-configuration.json"
|
||||
}
|
||||
"name": "swmf-grammar",
|
||||
"displayName": "SWMF Configuration",
|
||||
"description": "Syntax highlights and outline view for SWMF configuration files",
|
||||
"version": "1.0.1",
|
||||
"publisher": "svaberg",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/svaberg/SWMF-grammar.git"
|
||||
},
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"vscode": "^1.74.0"
|
||||
},
|
||||
"categories": [
|
||||
"Programming Languages",
|
||||
"Formatters"
|
||||
],
|
||||
"activationEvents": [
|
||||
"onLanguage:swmf-config"
|
||||
],
|
||||
"icon": "images/icon.png",
|
||||
"main": "./out/extension.js",
|
||||
"contributes": {
|
||||
"languages": [
|
||||
{
|
||||
"id": "swmf-config",
|
||||
"aliases": [
|
||||
"SWMF Config",
|
||||
"swmf"
|
||||
],
|
||||
"grammars": [
|
||||
{
|
||||
"language": "swmf-config",
|
||||
"scopeName": "source.swmf",
|
||||
"path": "./syntaxes/swmf.tmLanguage.json"
|
||||
}
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"vscode:prepublish": "npm run compile",
|
||||
"compile": "tsc -p ./",
|
||||
"watch": "tsc -watch -p ./",
|
||||
"pretest": "npm run compile"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^3.7.5",
|
||||
"vscode-test": "^1.3.0",
|
||||
"@types/vscode": "^1.41.0"
|
||||
}
|
||||
"extensions": [
|
||||
".in",
|
||||
".IN"
|
||||
],
|
||||
"configuration": "./language-configuration.json"
|
||||
}
|
||||
],
|
||||
"grammars": [
|
||||
{
|
||||
"language": "swmf-config",
|
||||
"scopeName": "source.swmf",
|
||||
"path": "./syntaxes/swmf.tmLanguage.json"
|
||||
}
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"vscode:prepublish": "npm run compile",
|
||||
"compile": "tsc -p ./",
|
||||
"watch": "tsc -watch -p ./",
|
||||
"pretest": "npm run compile && npm run lint",
|
||||
"lint": "eslint src --ext ts",
|
||||
"test": "node ./out/test/runTest.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/vscode": "^1.74.0",
|
||||
"@types/glob": "^8.0.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"
|
||||
}
|
||||
|
|
|
@ -1,16 +1,17 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"target": "es6",
|
||||
"outDir": "out",
|
||||
"lib": [
|
||||
"es6"
|
||||
],
|
||||
"sourceMap": true,
|
||||
"rootDir": "src"
|
||||
},
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
".vscode-test"
|
||||
]
|
||||
}
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"target": "ES2020",
|
||||
"outDir": "out",
|
||||
"lib": [
|
||||
"ES2020"
|
||||
],
|
||||
"sourceMap": true,
|
||||
"rootDir": "src",
|
||||
"strict": true /* enable all strict type-checking options */
|
||||
/* Additional Checks */
|
||||
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
|
||||
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
|
||||
// "noUnusedParameters": true, /* Report errors on unused parameters. */
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user