This repository was archived by the owner on Dec 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.69 KB
/
package.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "split-lines",
"displayName": "Split Lines",
"description": "Splitting Lines With String Literals",
"version": "1.0.2",
"icon": "images/icon.png",
"publisher": "brainfit",
"author": {
"name": "Vladimir K Urushev"
},
"license": "MIT",
"engines": {
"vscode": "^1.33.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pilat/split-lines.git"
},
"categories": [
"Formatters",
"Other"
],
"keywords": [
"split",
"python",
"newline",
"javascript"
],
"badges": [
{
"url": "https://vsmarketplacebadge.apphb.com/version/brainfit.split-lines.svg",
"href": "https://marketplace.visualstudio.com/items?itemName=brainfit.split-lines",
"description": "Visual Studio Marketplace"
},
{
"url": "https://travis-ci.org/pilat/split-lines.svg?branch=master",
"href": "https://travis-ci.org/pilat/split-lines",
"description": "Travis-CI"
},
{
"url": "https://codecov.io/gh/pilat/split-lines/branch/master/graph/badge.svg",
"href": "https://codecov.io/gh/pilat/split-lines",
"description": "codecov"
}
],
"homepage": "https://github.com/pilat/split-lines/blob/master/README.md",
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:python",
"onLanguage:php",
"onLanguage:dart",
"onLanguage:java"
],
"main": "./out/src/extension.js",
"contributes": {
"commands": []
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"watch": "tsc -watch -p ./",
"test": "CODE_DISABLE_EXTENSIONS=1 node ./node_modules/vscode/bin/test",
"lint": "tslint './src/**/*.ts' './test/*.ts'",
"pretty": "tslint --fix './src/**/*.ts'"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.0",
"@types/simple-mock": "^0.8.1",
"decache": "^4.5.1",
"glob": "^7.1.4",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"remap-istanbul": "^0.13.0",
"simple-mock": "^0.8.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"typescript-tslint-plugin": "^0.5.4",
"vscode": "^1.1.33"
},
"dependencies": {
"vscode-extension-telemetry": "^0.1.2",
"vscode-textmate": "^4.2.2"
}
}