-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.34 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
{
"name": "bees-request",
"version": "1.1.6",
"description": "A promise based simple abortable http client for node, browsers and React Native.",
"keywords": [
"api client",
"http",
"http-client",
"http client",
"abortable",
"promise",
"xmlhttprequest",
"rest"
],
"bugs": {
"url": "https://github.com/mnecchi/bees-request/issues",
"email": "massimo.necchi@gmail.com"
},
"main": "./umd/bees-request.js",
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server",
"test": "mocha",
"build": "webpack; mocha;"
},
"author": "Massimo Necchi",
"license": "MIT",
"engines": {
"node": ">=7.10.0"
},
"directories": {
"lib": "./umd"
},
"files": [
"umd"
],
"repository": {
"type": "git",
"url": "https://github.com/mnecchi/bees-request.git"
},
"react-native": {
"./src/handlers/beesHttp.js": "./src/handlers/beesXmlHttp.js",
"http": false,
"https": false,
"follow-redirects": false
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babili-webpack-plugin": "^0.1.1",
"chai": "^3.5.0",
"mocha": "^3.4.1",
"sinon": "^2.3.1",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"follow-redirects": "^1.2.3"
}
}