forked from Zlobin/es-ajax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.77 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
70
71
72
73
74
75
76
77
{
"name": "es-ajax",
"description": "Ajax (fetch or xhr2) with promises - an useful JavaScript library for convenient work with ajax requests in a browser.",
"version": "1.1.6",
"main": "src/index.js",
"files": [
"src",
".babelrc",
".eslintrc",
"webpack.config.js"
],
"author": {
"name": "Eugene Zlobin",
"email": "[email protected]",
"web": "https://zlobin.pro/"
},
"repository": {
"type": "git",
"url": "https://github.com/Zlobin/es-ajax.git"
},
"keywords": [
"xhr",
"get",
"post",
"put",
"delete",
"head",
"options",
"ajax",
"promise",
"es2015",
"xhr2",
"xmlhttprequest",
"fetch",
"javascript",
"request",
"response"
],
"license": "MIT",
"dependencies": {
"es-middleware": "^1.1.3",
"object-hash": "^1.1.4",
"qs": "^6.2.1"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-export-extensions": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-stage-2": "^6.13.0",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.0.0",
"expect": "^1.20.2",
"karma": "^1.1.2",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sinon": "^1.0.5",
"karma-webpack": "^1.8.0",
"mocha": "^3.0.2",
"phantomjs-prebuilt": "^2.1.11",
"sinon": "^1.17.5",
"webpack": "^1.13.1"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "webpack && karma start"
}
}