mirror of
https://github.com/axios/axios.git
synced 2026-04-14 15:21:58 +08:00
64 lines
1.6 KiB
JSON
64 lines
1.6 KiB
JSON
{
|
|
"name": "axios",
|
|
"version": "0.5.4",
|
|
"description": "Promise based HTTP client for the browser and node.js",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "grunt test",
|
|
"start": "node ./sandbox/server.js",
|
|
"examples": "node ./examples/server.js",
|
|
"coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/mzabriskie/axios.git"
|
|
},
|
|
"keywords": [
|
|
"xhr",
|
|
"http",
|
|
"ajax",
|
|
"promise",
|
|
"node"
|
|
],
|
|
"author": "Matt Zabriskie",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/mzabriskie/axios/issues"
|
|
},
|
|
"homepage": "https://github.com/mzabriskie/axios",
|
|
"dependencies": {
|
|
"es6-promise": "^2.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"coveralls": "^2.11.2",
|
|
"grunt": "^0.4.5",
|
|
"grunt-banner": "^0.4.0",
|
|
"grunt-contrib-clean": "^0.6.0",
|
|
"grunt-contrib-nodeunit": "^0.4.1",
|
|
"grunt-contrib-watch": "^0.6.1",
|
|
"grunt-eslint": "^15.0.0",
|
|
"grunt-karma": "^0.11.0",
|
|
"grunt-ts": "^4.2.0-beta",
|
|
"grunt-update-json": "^0.2.1",
|
|
"grunt-webpack": "^1.0.8",
|
|
"jasmine-core": "^2.3.4",
|
|
"karma": "^0.12.36",
|
|
"karma-coverage": "^0.4.2",
|
|
"karma-jasmine": "^0.3.5",
|
|
"karma-jasmine-ajax": "^0.1.12",
|
|
"karma-phantomjs-launcher": "^0.2.0",
|
|
"karma-sourcemap-loader": "^0.3.5",
|
|
"karma-webpack": "1.6.0",
|
|
"load-grunt-tasks": "^3.2.0",
|
|
"minimist": "^1.1.1",
|
|
"webpack": "1.10.3",
|
|
"webpack-dev-server": "^1.9.0"
|
|
},
|
|
"browser": {
|
|
"./lib/adapters/http.js": "./lib/adapters/xhr.js"
|
|
},
|
|
"typescript": {
|
|
"definition": "./axios.d.ts"
|
|
}
|
|
}
|