package.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "axios",
  3. "version": "0.21.4",
  4. "description": "Promise based HTTP client for the browser and node.js",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "grunt test",
  8. "start": "node ./sandbox/server.js",
  9. "build": "NODE_ENV=production grunt build",
  10. "preversion": "npm test",
  11. "version": "npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json",
  12. "postversion": "git push && git push --tags",
  13. "examples": "node ./examples/server.js",
  14. "coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
  15. "fix": "eslint --fix lib/**/*.js"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/axios/axios.git"
  20. },
  21. "keywords": [
  22. "xhr",
  23. "http",
  24. "ajax",
  25. "promise",
  26. "node"
  27. ],
  28. "author": "Matt Zabriskie",
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/axios/axios/issues"
  32. },
  33. "homepage": "https://axios-http.com",
  34. "devDependencies": {
  35. "coveralls": "^3.0.0",
  36. "es6-promise": "^4.2.4",
  37. "grunt": "^1.3.0",
  38. "grunt-banner": "^0.6.0",
  39. "grunt-cli": "^1.2.0",
  40. "grunt-contrib-clean": "^1.1.0",
  41. "grunt-contrib-watch": "^1.0.0",
  42. "grunt-eslint": "^23.0.0",
  43. "grunt-karma": "^4.0.0",
  44. "grunt-mocha-test": "^0.13.3",
  45. "grunt-ts": "^6.0.0-beta.19",
  46. "grunt-webpack": "^4.0.2",
  47. "istanbul-instrumenter-loader": "^1.0.0",
  48. "jasmine-core": "^2.4.1",
  49. "karma": "^6.3.2",
  50. "karma-chrome-launcher": "^3.1.0",
  51. "karma-firefox-launcher": "^2.1.0",
  52. "karma-jasmine": "^1.1.1",
  53. "karma-jasmine-ajax": "^0.1.13",
  54. "karma-safari-launcher": "^1.0.0",
  55. "karma-sauce-launcher": "^4.3.6",
  56. "karma-sinon": "^1.0.5",
  57. "karma-sourcemap-loader": "^0.3.8",
  58. "karma-webpack": "^4.0.2",
  59. "load-grunt-tasks": "^3.5.2",
  60. "minimist": "^1.2.0",
  61. "mocha": "^8.2.1",
  62. "sinon": "^4.5.0",
  63. "terser-webpack-plugin": "^4.2.3",
  64. "typescript": "^4.0.5",
  65. "url-search-params": "^0.10.0",
  66. "webpack": "^4.44.2",
  67. "webpack-dev-server": "^3.11.0"
  68. },
  69. "browser": {
  70. "./lib/adapters/http.js": "./lib/adapters/xhr.js"
  71. },
  72. "jsdelivr": "dist/axios.min.js",
  73. "unpkg": "dist/axios.min.js",
  74. "typings": "./index.d.ts",
  75. "dependencies": {
  76. "follow-redirects": "^1.14.0"
  77. },
  78. "bundlesize": [
  79. {
  80. "path": "./dist/axios.min.js",
  81. "threshold": "5kB"
  82. }
  83. ],
  84. "__npminstall_done": true,
  85. "_from": "axios@0.21.4",
  86. "_resolved": "https://registry.npmmirror.com/axios/-/axios-0.21.4.tgz"
  87. }