vscode-extensions-logging
Version:
<p align="center"> <h1>vscode-extensions-logging</h1> </p>
77 lines (76 loc) • 2.46 kB
JSON
{
"name": "vscode-extensions-logging",
"version": "1.0.4",
"description": "",
"main": "#/index.js",
"scripts": {
"build": "ttsc -p ./tsconfig.build.json",
"check:spelling": "cspell --config=.cspell.json \"**/*.{md,ts,js}\"",
"commit": "git-cz",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"lint:markdown:fix": "lint:markdown --fix",
"lint:markdown": "markdownlint '**/*.md' --ignore-path=.markdownlintignore",
"release": "",
"test": "echo \"No test specified\" && exit 0",
"typecheck": "ttsc -p ./",
"validations": "yarn lint && yarn lint:markdown && yarn check:spelling && yarn typecheck && yarn test",
"yarn:pack": "yarn pack && cpy '*.tgz' 'releases'",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/adrielcodeco/vscode-extensions-logging.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/adrielcodeco/vscode-extensions-logging/issues"
},
"homepage": "https://github.com/adrielcodeco/vscode-extensions-logging#readme",
"dependencies": {
"lodash": "^4.17.20",
"winston": "^3.3.3",
"winston-transport": "^4.4.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/lodash": "^4.14.161",
"@types/node": "^14.10.1",
"@types/vscode": "^1.49.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"cpy-cli": "^3.1.1",
"cspell": "^4.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.8.1",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"markdownlint-cli": "^0.23.2",
"prettier": "^2.1.1",
"semantic-release": "^17.1.1",
"semantic-release-cli": "^5.4.0",
"ttypescript": "^1.5.12",
"typescript": "^4.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "yarn validations",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}