-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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
{
"name": "md-shortcodes-lint",
"version": "1.0.0",
"private": true,
"description": "Linter for markdown with Hugo-style shortcodes",
"main": "dist/index.js",
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces",
"release": "yarn build && lerna publish && lerna run vs-publish",
"test": "lerna run test",
"lint": "lerna run lint",
"build": "lerna run build",
"clean": "rimraf \"packages/*/dist\" \"packages/*/*.vsix\"",
"postinstall": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HitkoDev/md-shortcodes-lint.git"
},
"author": "HitkoDev",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/HitkoDev/md-shortcodes-lint/issues"
},
"homepage": "https://github.com/HitkoDev/md-shortcodes-lint#readme",
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@commitlint/config-lerna-scopes": "^12.1.4",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"npm-check-updates": "^11.7.1",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.6",
"tslib": "^2.3.0",
"tslint": "^6.1.3",
"typescript": "^4.3.4",
"vsce": "^1.93.0"
}
}