CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
package.json65 linesDownload Raw Back to debug
1{2  "name": "debug",3  "version": "4.4.3",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 (https://github.com/qix-)",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": "mocha test.js test.node.js",30    "test:browser": "karma start --single-run",31    "test:coverage": "cat ./coverage/lcov.info | coveralls"32  },33  "dependencies": {34    "ms": "^2.1.3"35  },36  "devDependencies": {37    "brfs": "^2.0.1",38    "browserify": "^16.2.3",39    "coveralls": "^3.0.2",40    "karma": "^3.1.4",41    "karma-browserify": "^6.0.0",42    "karma-chrome-launcher": "^2.2.0",43    "karma-mocha": "^1.3.0",44    "mocha": "^5.2.0",45    "mocha-lcov-reporter": "^1.2.0",46    "sinon": "^14.0.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  "xo": {60    "rules": {61      "import/extensions": "off"62    }63  }64}65