用工小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.5 KiB

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
  1. {
  2. "name": "debug",
  3. "version": "4.4.0",
  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": "istanbul cover _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. "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. "sinon": "^14.0.0",
  48. "xo": "^0.23.0"
  49. },
  50. "peerDependenciesMeta": {
  51. "supports-color": {
  52. "optional": true
  53. }
  54. },
  55. "main": "./src/index.js",
  56. "browser": "./src/browser.js",
  57. "engines": {
  58. "node": ">=6.0"
  59. },
  60. "xo": {
  61. "rules": {
  62. "import/extensions": "off"
  63. }
  64. }
  65. }