-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.38 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
{
"name": "multiagent",
"description": "Simple HTTP client with failover functionality for node.js and browsers",
"version": "2.1.0",
"scripts": {
"test": "gulp test",
"prepublish": "gulp build"
},
"keywords": [
"http",
"ajax",
"browser",
"request",
"agent",
"superagent",
"failover",
"service",
"microservice",
"discovery",
"consul",
"resilient"
],
"author": "Andreas Helmberger <public@ahelmberger.de>",
"license": "MIT",
"main": "lib/index.js",
"browser": "lib/browser.js",
"repository": "ahelmberger/multiagent",
"dependencies": {
"array-shuffle": "^1.0.1",
"superagent": "^2.0.0"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"cors": "^2.7.1",
"expect.js": "^0.3.1",
"express": "^4.14.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^3.0.1",
"gulp-mocha": "^2.2.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.4",
"karma": "^1.1.1",
"karma-browserify": "^5.0.5",
"karma-chrome-launcher": "^1.0.1",
"karma-mocha": "^1.1.1",
"mocha": "^2.5.3",
"rimraf": "^2.5.3",
"run-sequence": "^1.2.2",
"watchify": "^3.7.0",
"webpack": "^1.13.1",
"webpack-stream": "^3.2.0"
}
}