forked from johntron/superagent-no-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "superagent-no-cache",
"repository": "https://github.com/johntron/superagent-no-cache.git",
"description": "Plugin for visionmedia/superagent that adds headers to all requests that prevents caching",
"version": "0.1.1",
"keywords": [
"superagent",
"cache",
"request",
"AJAX"
],
"author": "John Syrinek <[email protected]>",
"contributors": [
"Trent Oswald <[email protected]> [@therebelrobot] (http://therebelrobot.com)"
],
"bugs": {
"url": "https://github.com/johntron/superagent-no-cache/issues"
},
"homepage": "https://github.com/johntron/superagent-no-cache",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "./node_modules/standard/bin/cmd.js; ./node_modules/istanbul/lib/cli.js cover _mocha --"
},
"standard": {
"ignore": [
"**/test/**"
]
},
"dependencies": {
"component-ie": "^1.0.0"
},
"devDependencies": {
"chai": "^2.3.0",
"istanbul": "^0.3.13",
"mocha": "^2.2.4",
"mock-browser": "^0.90.33",
"standard": "^3.7.2"
}
}