Pibd-21_Alekseev_I.S._Inter.../IP/node_modules/debug/package.json

60 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2023-12-03 16:59:28 +04:00
{
"name": "debug",
2024-01-06 20:33:49 +04:00
"version": "4.3.4",
2023-12-03 16:59:28 +04:00
"repository": {
"type": "git",
2024-01-06 20:33:49 +04:00
"url": "git://github.com/debug-js/debug.git"
2023-12-03 16:59:28 +04:00
},
2024-01-06 20:33:49 +04:00
"description": "Lightweight debugging utility for Node.js and the browser",
2023-12-03 16:59:28 +04:00
"keywords": [
"debug",
"log",
"debugger"
],
"files": [
"src",
"LICENSE",
"README.md"
],
2024-01-06 20:33:49 +04:00
"author": "Josh Junon <josh.junon@protonmail.com>",
2023-12-03 16:59:28 +04:00
"contributors": [
2024-01-06 20:33:49 +04:00
"TJ Holowaychuk <tj@vision-media.ca>",
2023-12-03 16:59:28 +04:00
"Nathan Rajlich <nathan@tootallnate.net> (http://n8.io)",
"Andrew Rhyne <rhyneandrew@gmail.com>"
],
"license": "MIT",
2024-01-06 20:33:49 +04:00
"scripts": {
"lint": "xo",
"test": "npm run test:node && npm run test:browser && npm run lint",
"test:node": "istanbul cover _mocha -- test.js",
"test:browser": "karma start --single-run",
"test:coverage": "cat ./coverage/lcov.info | coveralls"
},
2023-12-03 16:59:28 +04:00
"dependencies": {
2024-01-06 20:33:49 +04:00
"ms": "2.1.2"
2023-12-03 16:59:28 +04:00
},
"devDependencies": {
2024-01-06 20:33:49 +04:00
"brfs": "^2.0.1",
"browserify": "^16.2.3",
2023-12-03 16:59:28 +04:00
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
2024-01-06 20:33:49 +04:00
"karma": "^3.1.4",
"karma-browserify": "^6.0.0",
"karma-chrome-launcher": "^2.2.0",
2023-12-03 16:59:28 +04:00
"karma-mocha": "^1.3.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.2.0",
"xo": "^0.23.0"
},
2024-01-06 20:33:49 +04:00
"peerDependenciesMeta": {
"supports-color": {
"optional": true
}
},
2023-12-03 16:59:28 +04:00
"main": "./src/index.js",
"browser": "./src/browser.js",
2024-01-06 20:33:49 +04:00
"engines": {
"node": ">=6.0"
}
2023-12-03 16:59:28 +04:00
}