mirror of
https://github.com/tenrok/axios.git
synced 2026-05-18 12:39:44 +03:00
76f09afc03
* fix/Avoid package.json import; (#4041) * Added auto-generated config module `env/data.js` for importing package environment vars without importing the whole `package.json`; Refactored `http.js` to use `env/data.js` instead of package.json; * Added `env/data.js`; Added `env/README.md`; * Feat/export package version constant (#4065) * Added auto-generated config module `env/data.js` for importing package environment vars without importing the whole `package.json`; Refactored `http.js` to use `env/data.js` instead of package.json; * Added `env/data.js`; Added `env/README.md`; * Export package version constant; * Fixed cancelToken leakage; Added AbortController support; (#3305) * Fixed cancelToken leakage; Added AbortController support; * Fixed typings; * Documented `signal` option; * Added processing of early cancellation using AbortController without sending a request; Co-authored-by: Jay <jasonsaayman@gmail.com> * Updating CI to run on release branches * Fixed default transitional config for custom Axios instance; (#4052) Refactored `/core/mergeConfig`; Co-authored-by: Jay <jasonsaayman@gmail.com> * Prepping v0.22.0 for release * Updated date Co-authored-by: Dmitriy Mozgovoy <robotshara@gmail.com>
38 lines
635 B
JSON
38 lines
635 B
JSON
{
|
|
"name": "axios",
|
|
"main": "./dist/axios.js",
|
|
"version": "0.22.0",
|
|
"homepage": "https://axios-http.com",
|
|
"authors": [
|
|
"Matt Zabriskie"
|
|
],
|
|
"description": "Promise based HTTP client for the browser and node.js",
|
|
"moduleType": [
|
|
"amd",
|
|
"globals"
|
|
],
|
|
"keywords": [
|
|
"xhr",
|
|
"http",
|
|
"ajax",
|
|
"promise",
|
|
"node"
|
|
],
|
|
"license": "MIT",
|
|
"ignore": [
|
|
"**/.*",
|
|
"*.iml",
|
|
"examples",
|
|
"lib",
|
|
"node_modules",
|
|
"sandbox",
|
|
"test",
|
|
"CONTRIBUTING.md",
|
|
"COOKBOOK.md",
|
|
"Gruntfile.js",
|
|
"index.js",
|
|
"karma.conf.js",
|
|
"package.json",
|
|
"webpack.*.js"
|
|
]
|
|
} |