mirror of
https://github.com/github/codeql-action.git
synced 2025-12-26 17:20:10 +08:00
73 lines
2.0 KiB
JSON
73 lines
2.0 KiB
JSON
{
|
|
"name": "github-linguist",
|
|
"version": "2.4.4",
|
|
"description": "A tool to count lines of code in a repository powered by github-linguist langauge mappings.",
|
|
"keywords": [
|
|
"loc",
|
|
"cloc",
|
|
"linguist",
|
|
"lines of code"
|
|
],
|
|
"homepage": "https://github.com/aeisenberg/linguist#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/aeisenberg/linguist/issues"
|
|
},
|
|
"bin": {
|
|
"loc": "dist/cli.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/aeisenberg/linguist.git"
|
|
},
|
|
"license": "MIT",
|
|
"authors": [
|
|
"ephoton <i@ephoton.me> (https://github.com/ephoton)",
|
|
"chenshuai2144 <qixian.cs@outlook.com> (https://github.com/chenshuai2144)",
|
|
"Andrew Eisenberg <aeisenberg@github.com> (https://github.com/aeisenberg)"
|
|
],
|
|
"main": "dist/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -d",
|
|
"lint": "eslint --cache --ext .ts ./src",
|
|
"prettier": "prettier -c --write \"**/*\"",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^2.2.0",
|
|
"commander": "^2.11.0",
|
|
"fs-extra": "^4.0.3",
|
|
"globby": "^6.1.0",
|
|
"language-map": "^1.3.0",
|
|
"slash2": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.0.4",
|
|
"@types/chalk": "^0.4.31",
|
|
"@types/commander": "^2.11.0",
|
|
"@types/fs-extra": "^4.0.2",
|
|
"@types/globby": "^6.1.0",
|
|
"@types/jest": "^27.0.1",
|
|
"@types/mocha": "^2.2.43",
|
|
"@types/node": "^8.0.45",
|
|
"@typescript-eslint/eslint-plugin": "^4.29.3",
|
|
"@typescript-eslint/parser": "^4.29.3",
|
|
"chai": "^4.1.2",
|
|
"coveralls": "^3.0.0",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-airbnb-base": "^14.2.1",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-import": "^2.24.1",
|
|
"eslint-plugin-prettier": "^3.4.1",
|
|
"jest": "^27.0.6",
|
|
"prettier": "^2.3.2",
|
|
"ts-jest": "^27.0.5",
|
|
"ts-node": "^10.2.1",
|
|
"typescript": "^3.9.10"
|
|
}
|
|
}
|