This repository was archived by the owner on Jan 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.29 KB
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
{
"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": "eslint './src/**/*.ts'",
"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",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"eslint": "^6.6.0",
"mocha": "^6.2.2",
"ts-node": "^8.4.1",
"typescript": "^3.4.5"
}
}