cmetrix
Version:
CLI to build code metrics charts for your projects
94 lines (93 loc) • 2.27 kB
JSON
{
"name": "cmetrix",
"version": "1.2.5",
"description": "CLI to build code metrics charts for your projects",
"main": "build/main.js",
"bin": {
"cmetrix": "./bin/cmetrix.js"
},
"keywords": [
"metrix",
"metrics",
"code",
"chart"
],
"files": [
"build",
"bin"
],
"scripts": {
"tslint": "tslint --fix 'lib/**/*.ts'",
"jest": "jest --verbose",
"testw": "jest --watch",
"prettier": "prettier --write '**/*.{js,json,md,ts}'",
"prettier:check": "prettier --check '**/*.{js,json,md,ts}'",
"compile": "tsc",
"test": "run-s -c compile jest",
"check": "run-s prettier:check",
"prebuild": "rimraf build",
"build": "webpack",
"start": "node build/main.js",
"preversion": "run-s check test build",
"postversion": "git push && git push --tags && npm publish --access=public"
},
"author": "Peio",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pierreroth64/cmetrix"
},
"dependencies": {
"@arpinum/log": "5.3.1",
"@arpinum/promising": "4.0.0",
"chalk": "4.1.0",
"commander": "6.2.0",
"cross-spawn": "7.0.3",
"glob": "7.1.6",
"import-local": "3.0.2",
"lodash": "4.17.20",
"mkdirp": "1.0.4",
"mustache": "4.0.1",
"open": "7.3.0",
"ora": "5.1.0",
"progress": "2.0.3",
"rimraf": "3.0.2",
"shelljs": "0.8.4",
"simple-git": "2.23.0"
},
"devDependencies": {
"@types/chalk": "2.2.0",
"@types/cross-spawn": "6.0.2",
"@types/glob": "7.1.3",
"@types/jest": "26.0.15",
"@types/lodash": "4.14.165",
"@types/mkdirp": "1.0.1",
"@types/mustache": "4.0.1",
"@types/node": "14.14.9",
"@types/progress": "2.0.3",
"@types/rimraf": "3.0.0",
"@types/shelljs": "0.8.8",
"html-loader": "1.3.2",
"jest": "26.6.3",
"npm-run-all": "4.1.5",
"prettier": "2.2.0",
"ts-jest": "26.4.4",
"ts-loader": "8.0.11",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "4.1.2",
"webpack": "5.6.0",
"webpack-cli": "4.2.0"
},
"jest": {
"transform": {
".ts": "ts-jest"
},
"testRegex": "/lib/.*\\.spec\\.ts$",
"moduleFileExtensions": [
"js",
"json",
"ts"
]
}
}