package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "default-user-agent",
  3. "version": "1.0.0",
  4. "description": "Default user agent string for nodejs http request",
  5. "main": "index.js",
  6. "files": [
  7. "index.js"
  8. ],
  9. "scripts": {
  10. "test": "mocha --check-leaks -R spec -t 5000 test/*.test.js",
  11. "test-cov": "istanbul cover node_modules/.bin/_mocha -- --check-leaks -t 5000 test/*.test.js",
  12. "test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- --check-leaks -t 5000 test/*.test.js",
  13. "lint": "jshint .",
  14. "autod": "autod -w --prefix '~'",
  15. "cnpm": "npm install --registry=https://registry.npm.taobao.org",
  16. "contributors": "contributors -f plain -o AUTHORS"
  17. },
  18. "dependencies": {
  19. "os-name": "~1.0.3"
  20. },
  21. "devDependencies": {
  22. "autod": "*",
  23. "contributors": "*",
  24. "should": "*",
  25. "jshint": "*",
  26. "cov": "*",
  27. "istanbul": "*",
  28. "mocha": "*"
  29. },
  30. "homepage": "https://github.com/node-modules/default-user-agent",
  31. "repository": {
  32. "type": "git",
  33. "url": "git://github.com/node-modules/default-user-agent.git",
  34. "web": "https://github.com/node-modules/default-user-agent"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/node-modules/default-user-agent/issues",
  38. "email": "fengmk2@gmail.com"
  39. },
  40. "keywords": [
  41. "user-agent",
  42. "ua",
  43. "useragent",
  44. "request",
  45. "http"
  46. ],
  47. "engines": {
  48. "node": ">= 0.10.0"
  49. },
  50. "author": "fengmk2 <fengmk2@gmail.com> (http://fengmk2.com)",
  51. "license": "MIT"
  52. }