UNPKG

2.37 kBJSONView Raw
1{
2 "name": "axios",
3 "version": "0.18.0",
4 "description": "Promise based HTTP client for the browser and node.js",
5 "main": "index.js",
6 "scripts": {
7 "test": "grunt test && bundlesize",
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 },
16 "repository": {
17 "type": "git",
18 "url": "https://github.com/axios/axios.git"
19 },
20 "keywords": [
21 "xhr",
22 "http",
23 "ajax",
24 "promise",
25 "node"
26 ],
27 "author": "Matt Zabriskie",
28 "license": "MIT",
29 "bugs": {
30 "url": "https://github.com/axios/axios/issues"
31 },
32 "homepage": "https://github.com/axios/axios",
33 "devDependencies": {
34 "bundlesize": "^0.5.7",
35 "coveralls": "^2.11.9",
36 "es6-promise": "^4.0.5",
37 "grunt": "^1.0.1",
38 "grunt-banner": "^0.6.0",
39 "grunt-cli": "^1.2.0",
40 "grunt-contrib-clean": "^1.0.0",
41 "grunt-contrib-nodeunit": "^1.0.0",
42 "grunt-contrib-watch": "^1.0.0",
43 "grunt-eslint": "^19.0.0",
44 "grunt-karma": "^2.0.0",
45 "grunt-ts": "^6.0.0-beta.3",
46 "grunt-webpack": "^1.0.18",
47 "istanbul-instrumenter-loader": "^1.0.0",
48 "jasmine-core": "^2.4.1",
49 "karma": "^1.3.0",
50 "karma-chrome-launcher": "^2.0.0",
51 "karma-coverage": "^1.0.0",
52 "karma-firefox-launcher": "^1.0.0",
53 "karma-jasmine": "^1.0.2",
54 "karma-jasmine-ajax": "^0.1.13",
55 "karma-opera-launcher": "^1.0.0",
56 "karma-safari-launcher": "^1.0.0",
57 "karma-sauce-launcher": "^1.1.0",
58 "karma-sinon": "^1.0.5",
59 "karma-sourcemap-loader": "^0.3.7",
60 "karma-webpack": "^1.7.0",
61 "load-grunt-tasks": "^3.5.2",
62 "minimist": "^1.2.0",
63 "sinon": "^1.17.4",
64 "webpack": "^1.13.1",
65 "webpack-dev-server": "^1.14.1",
66 "url-search-params": "^0.6.1",
67 "typescript": "^2.0.3"
68 },
69 "browser": {
70 "./lib/adapters/http.js": "./lib/adapters/xhr.js"
71 },
72 "typings": "./index.d.ts",
73 "dependencies": {
74 "follow-redirects": "^1.3.0",
75 "is-buffer": "^1.1.5"
76 },
77 "bundlesize": [
78 {
79 "path": "./dist/axios.min.js",
80 "threshold": "5kB"
81 }
82 ]
83}