dotfiles/vscode/.vscode/extensions/kevinrose.vsc-python-indent-1.18.0/node_modules/python-indent-parser/package.json
Errol Sancaktar ff17c17e23 vscode
2024-06-14 09:31:58 -06:00

47 lines
1.2 KiB
JSON

{
"name": "python-indent-parser",
"version": "0.1.4",
"description": "A simple parser of Python source for proper indentation",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "mocha --ui tdd -r ts-node/register test/index.ts",
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DSpeckhals/python-indent-parser.git"
},
"keywords": [
"python",
"vscode",
"atom"
],
"author": "Dustin Speckhals <dustin1114@gmail.com>",
"contributors": [
"Kevin Rose <kevin+gh@maypark.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/DSpeckhals/python-indent-parser/issues"
},
"homepage": "https://github.com/DSpeckhals/python-indent-parser#readme",
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.3",
"mocha": "^6.2.2",
"ts-node": "^8.4.1",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
}
}