forked from axios/axios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.82 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"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.6",
"es6-promise": "3.0.2",
"grunt": "0.4.5",
"grunt-banner": "0.6.0",
"grunt-cli": "0.1.13",
"grunt-contrib-clean": "0.7.0",
"grunt-contrib-nodeunit": "0.4.1",
"grunt-contrib-watch": "0.6.1",
"grunt-eslint": "17.3.1",
"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.1.3",
"jasmine-core": "2.4.1",
"karma": "0.13.19",
"karma-coverage": "0.5.3",
"karma-jasmine": "0.3.6",
"karma-jasmine-ajax": "0.1.13",
"karma-phantomjs-launcher": "0.2.3",
"karma-sinon": "1.0.4",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "1.7.0",
"load-grunt-tasks": "3.4.0",
"minimist": "1.2.0",
"phantomjs": "1.9.19",
"webpack": "1.12.11",
"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"
}
}