package.json 1.7 KB
Newer Older
M
Matt Zabriskie 已提交
1 2
{
  "name": "axios",
M
mzabriskie 已提交
3
  "version": "0.7.0",
M
mzabriskie 已提交
4
  "description": "Promise based HTTP client for the browser and node.js",
M
Matt Zabriskie 已提交
5 6
  "main": "index.js",
  "scripts": {
M
Matt Zabriskie 已提交
7
    "test": "grunt test",
M
mzabriskie 已提交
8
    "start": "node ./sandbox/server.js",
M
mzabriskie 已提交
9
    "examples": "node ./examples/server.js",
M
mzabriskie 已提交
10
    "coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
M
Matt Zabriskie 已提交
11 12 13 14 15 16 17 18 19
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/mzabriskie/axios.git"
  },
  "keywords": [
    "xhr",
    "http",
    "ajax",
M
mzabriskie 已提交
20 21
    "promise",
    "node"
M
Matt Zabriskie 已提交
22 23 24 25 26 27 28 29
  ],
  "author": "Matt Zabriskie",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mzabriskie/axios/issues"
  },
  "homepage": "https://github.com/mzabriskie/axios",
  "devDependencies": {
M
mzabriskie 已提交
30 31 32 33 34 35 36 37 38 39 40 41 42
    "coveralls": "2.11.4",
    "es6-promise": "3.0.2",
    "grunt": "0.4.5",
    "grunt-banner": "0.5.0",
    "grunt-cli": "0.1.13",
    "grunt-contrib-clean": "0.6.0",
    "grunt-contrib-nodeunit": "0.4.1",
    "grunt-contrib-watch": "0.6.1",
    "grunt-eslint": "17.2.0",
    "grunt-karma": "0.12.1",
    "grunt-ts": "5.0.0-beta.5",
    "grunt-update-json": "0.2.1",
    "grunt-webpack": "1.0.11",
M
mzabriskie 已提交
43
    "istanbul-instrumenter-loader": "^0.1.3",
M
mzabriskie 已提交
44 45 46 47 48 49
    "jasmine-core": "2.3.4",
    "karma": "0.13.10",
    "karma-coverage": "0.5.2",
    "karma-jasmine": "0.3.6",
    "karma-jasmine-ajax": "0.1.13",
    "karma-phantomjs-launcher": "0.2.1",
50
    "karma-sinon": "1.0.4",
M
mzabriskie 已提交
51 52 53 54 55 56 57
    "karma-sourcemap-loader": "0.3.5",
    "karma-webpack": "1.7.0",
    "load-grunt-tasks": "3.3.0",
    "minimist": "1.2.0",
    "phantomjs": "1.9.18",
    "webpack": "1.12.2",
    "webpack-dev-server": "1.12.0"
58 59 60
  },
  "browser": {
    "./lib/adapters/http.js": "./lib/adapters/xhr.js"
61 62 63
  },
  "typescript": {
    "definition": "./axios.d.ts"
M
Matt Zabriskie 已提交
64 65
  }
}