-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
138 lines (138 loc) · 3.49 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "vscode-nested-tags",
"displayName": "Nested Tags",
"description": "",
"version": "0.0.0",
"engines": {
"vscode": "^1.30.0"
},
"repository": {
"url": "https://github.com/blakedietz/vscode-nested-tags"
},
"main": "./out/extension.js",
"scripts": {
"build": "tsc -build tsconfig.json",
"build:watch": "tsc -build tsconfig.json -w",
"commit": "git-cz",
"compile": "tsc -p ./",
"docs": "./node_modules/.bin/typedoc --tsconfig tsconfig.json --out ./docs",
"lint": "tslint -p tsconfig.json",
"postinstall": "node ./node_modules/vscode/bin/install",
"prettify": "prettier --write \"src/**/*{.ts,.md}\"",
"semantic-release": "semantic-release",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests",
"test:update-snapshot":"jest --updateSnapshot",
"vscode:prepublish": "npm run build",
"watch": "npm run build:watch"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/exec": "^3.3.2",
"@semantic-release/git": "^7.0.8",
"@semantic-release/github": "^5.2.9",
"@semantic-release/npm": "^5.1.4",
"@types/debounce": "^1.2.0",
"@types/jest": "^23.3.12",
"@types/node": "^10.12.18",
"@types/recursive-readdir": "2.2.0",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"semantic-release": "^16.0.0-beta.39",
"semantic-release-vsce": "2.1.2",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typedoc": "^0.15.3",
"typescript": "^3.2.2",
"vscode": "^1.1.25"
},
"dependencies": {
"debounce": "^1.2.0",
"gray-matter": "4.0.2"
},
"activationEvents": [
"onView:tagTreeView"
],
"contributes": {
"views": {
"explorer": [
{
"id": "tagTreeView",
"name": "Tag Tree"
}
]
},
"configuration": {
"type": "object",
"title": "nested-tags",
"properties": {
"vscode-nested-tags.additionalFileTypes": {
"type": "array",
"default": [],
"description": "Add file types that you want nested tags to scan for @nested-tags annotations."
}
}
}
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#073642",
"theme": "dark"
},
"publisher": "vscode-nested-tags",
"config": {
"loglevel": "verbose",
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run build && npm run test && lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.{ts}": [
"prettier --write",
"git add"
]
},
"release": {
"plugins": [
[
"@semantic-release/release-notes-generator",
{
"preset": "angular",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
},
"writerOpts": {
"commitsSort": [
"subject",
"scope"
]
}
}
],
"@semantic-release/github",
[
"semantic-release-vsce",
{
"path": "@semantic-release/github",
"assets": "vscode-nested-tags.vsix"
}
]
]
}
}