debuggo
Version:
General purpose debug library based on visionmedia/debug
91 lines (90 loc) • 2.36 kB
JSON
{
"name": "debuggo",
"version": "1.4.1",
"description": "General purpose debug library based on visionmedia/debug",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"directories": {
"test": "dist/test"
},
"scripts": {
"clean": "rimraf dist coverage .nyc_output",
"clean:all": "npm run clean && rimraf node_modules",
"prebuild": "rimraf dist",
"build": "tsc",
"precommit": "npm run build && npm run cover && npm run check-coverage",
"commit": "git-cz",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"watch:test": "npm t -- -w",
"test": "tsc -p test && DEBUG=test-*:* mocha test/*.test.js",
"cover": "nyc --reporter=lcov --reporter=text npm t",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/vivocha/debuggo.git"
},
"files": [
"dist/**/*.js",
"dist/**/*.ts",
"README.md",
"LICENSE"
],
"author": "Vivocha <dev@vivocha.com> (http://www.vivocha.com/)",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "7.1.4",
"@types/chai-spies": "1.0.3",
"@types/mocha": "^9.0.0",
"@types/node": "^14.14.10",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.0.0",
"commitizen": "^4.2.4",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.4",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@types/debug": "4.1.7",
"debug": "^4.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run build && npm run cover && npm run check-coverage"
}
},
"nyc": {
"include": [
"dist/**/*.js",
"src/**/*.ts"
],
"extension": [
".js",
".ts"
],
"exclude": [
"**/test"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": true
}
}