mirror of
https://github.com/axios/axios.git
synced 2026-04-14 15:21:58 +08:00
75 lines
2.0 KiB
JSON
75 lines
2.0 KiB
JSON
{
|
|
"name": "axios",
|
|
"version": "0.9.1",
|
|
"description": "Promise based HTTP client for the browser and node.js",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "./node_modules/.bin/grunt build",
|
|
"test": "./node_modules/.bin/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",
|
|
"devDependencies": {
|
|
"coveralls": "2.11.8",
|
|
"es6-promise": "3.1.2",
|
|
"grunt": "0.4.5",
|
|
"grunt-banner": "0.6.0",
|
|
"grunt-cli": "0.1.13",
|
|
"grunt-contrib-clean": "1.0.0",
|
|
"grunt-contrib-nodeunit": "1.0.0",
|
|
"grunt-contrib-watch": "0.6.1",
|
|
"grunt-eslint": "18.0.0",
|
|
"grunt-karma": "0.12.1",
|
|
"grunt-ts": "5.3.2",
|
|
"grunt-update-json": "0.2.2",
|
|
"grunt-webpack": "1.0.11",
|
|
"istanbul-instrumenter-loader": "^0.2.0",
|
|
"jasmine-core": "2.4.1",
|
|
"karma": "0.13.21",
|
|
"karma-chrome-launcher": "^0.2.2",
|
|
"karma-coverage": "0.5.4",
|
|
"karma-firefox-launcher": "^0.1.7",
|
|
"karma-jasmine": "0.3.7",
|
|
"karma-jasmine-ajax": "0.1.13",
|
|
"karma-opera-launcher": "^0.3.0",
|
|
"karma-phantomjs-launcher": "1.0.0",
|
|
"karma-safari-launcher": "^0.1.1",
|
|
"karma-sauce-launcher": "^0.3.1",
|
|
"karma-sinon": "1.0.4",
|
|
"karma-sourcemap-loader": "0.3.7",
|
|
"karma-webpack": "1.7.0",
|
|
"load-grunt-tasks": "3.4.1",
|
|
"minimist": "1.2.0",
|
|
"phantomjs": "2.1.3",
|
|
"webpack": "1.12.14",
|
|
"webpack-dev-server": "1.14.1"
|
|
},
|
|
"browser": {
|
|
"./lib/adapters/http.js": "./lib/adapters/xhr.js"
|
|
},
|
|
"typescript": {
|
|
"definition": "./axios.d.ts"
|
|
},
|
|
"dependencies": {
|
|
"follow-redirects": "0.0.7"
|
|
}
|
|
}
|