CoolFace
Apppublic

Umama-at-Bluchip/Quick-UI

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json60 linesDownload Raw Back to debug
1{2  "name": "debug",3  "version": "4.3.4",4  "repository": {5    "type": "git",6    "url": "git://github.com/debug-js/debug.git"7  },8  "description": "Lightweight debugging utility for Node.js and the browser",9  "keywords": [10    "debug",11    "log",12    "debugger"13  ],14  "files": [15    "src",16    "LICENSE",17    "README.md"18  ],19  "author": "Josh Junon <josh.junon@protonmail.com>",20  "contributors": [21    "TJ Holowaychuk <tj@vision-media.ca>",22    "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io)",23    "Andrew Rhyne <rhyneandrew@gmail.com>"24  ],25  "license": "MIT",26  "scripts": {27    "lint": "xo",28    "test": "npm run test:node && npm run test:browser && npm run lint",29    "test:node": "istanbul cover _mocha -- test.js",30    "test:browser": "karma start --single-run",31    "test:coverage": "cat ./coverage/lcov.info | coveralls"32  },33  "dependencies": {34    "ms": "2.1.2"35  },36  "devDependencies": {37    "brfs": "^2.0.1",38    "browserify": "^16.2.3",39    "coveralls": "^3.0.2",40    "istanbul": "^0.4.5",41    "karma": "^3.1.4",42    "karma-browserify": "^6.0.0",43    "karma-chrome-launcher": "^2.2.0",44    "karma-mocha": "^1.3.0",45    "mocha": "^5.2.0",46    "mocha-lcov-reporter": "^1.2.0",47    "xo": "^0.23.0"48  },49  "peerDependenciesMeta": {50    "supports-color": {51      "optional": true52    }53  },54  "main": "./src/index.js",55  "browser": "./src/browser.js",56  "engines": {57    "node": ">=6.0"58  }59}60