forked from slorber/ajax-interceptor
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 822 Bytes
/
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
{
"name": "xhr-intercept",
"version": "0.1.1",
"description": "Allows you to intercept XHR requests. Useful to detect disconnected users, delaying calls while reconnecting them, things like that.",
"keywords": [
"xhr",
"http",
"request",
"ajax",
"aop",
"proxy",
"intercept",
"interceptor"
],
"author": "Florian Barbare",
"homepage": "https://github.com/fbarbare/xhr-intercept",
"bugs": "https://github.com/fbarbare/xhr-intercept/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fbarbare/xhr-intercept"
},
"main": "./script.js",
"scripts": {
"prepublish": "babel index.js --out-file script.js"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.23.0",
"babel-preset-es2015": "^6.22.0"
}
}