vscode-ext-localisation
Version:
Localisation for VSCode Extensions using package.nls.json files
58 lines (57 loc) • 1.63 kB
JSON
{
"name": "vscode-ext-localisation",
"version": "1.1.0",
"description": "Localisation for VSCode Extensions using package.nls.json files",
"author": "Sketchbuch",
"bugs": {
"url": "https://github.com/sketchbuch/vscode-ext-localisation/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/sketchbuch/vscode-ext-localisation#readme",
"keywords": [
"ext",
"extension",
"localisation",
"localization",
"nls",
"translation",
"vsc",
"vscode"
],
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sketchbuch/vscode-ext-localisation.git"
},
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf ./dist/*",
"compile": "tsc --p ./",
"lint:js": "eslint --config ./.eslintrc.js --fix --max-warnings=0 './src/**/*.ts'",
"lint:prettier": "prettier --write --config ./.prettierrc.json './src/**/*.ts'",
"lint:ts": "tsc --noEmit --p ./",
"lint": "yarn lint:ts && yarn lint:js && yarn lint:prettier",
"prepublishOnly": "yarn clean && yarn compile",
"test": "jest --config=./config/jest/jest.js"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint": "^7.3.1",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5"
},
"dependencies": {
"path": "^0.12.7"
}
}