-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.94 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
78
79
80
81
{
"name": "anyfetch-provider",
"description": "Create providers for Anyfetch.",
"version": "3.1.2",
"author": "Matthieu Bacconnier <[email protected]>",
"contributors": [
{
"name": "Merlin Nimier-David",
"email": "",
"url": "https://github.com/merlinND"
},
{
"name": "Hugo Duroux",
"email": "",
"url": "https://github.com/Amoki"
},
{
"name": "Matthieu Bacconnier",
"email": "[email protected]",
"url": "https://github.com/Neamar"
},
{
"name": "Robin Ricard",
"email": "",
"url": "https://github.com/rricard"
},
{
"name": "Antoine Bolvy",
"email": "[email protected]",
"url": "https://github.com/saveman71"
},
{
"name": "Quentin Buathier",
"email": "[email protected]",
"url": "https://github.com/Quentin01"
}
],
"scripts": {
"test": "NODE_ENV=test mocha --recursive -R spec test/",
"coverage": "NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha -- --recursive -R spec test/",
"lint": "jshint lib/ test/ && jscs lib/ test/"
},
"main": "./lib/",
"repository": {
"type": "git",
"url": "https://github.com/AnyFetch/anyfetch-provider.js"
},
"keywords": [
"anyfetch",
"provider"
],
"dependencies": {
"anyfetch": "^2.1.11",
"async": "^0.9.0",
"auto-load": "^1.1.0",
"bunyan": "^1.3.3",
"client-sessions": "^0.7.0",
"lru-cache": "^2.5.0",
"mongoose": "^3.8.23",
"opbeat": "^1.1.2",
"rarity": "^2.1.1",
"restify": "^2.8.5",
"restify-bunyan-logger": "^2.0.6",
"yaqs": "^1.1.0"
},
"devDependencies": {
"coveralls": "^2.11.2",
"istanbul": "^0.3.6",
"jscs": "^1.11.3",
"jshint": "^2.6.0",
"mocha": "^2.1",
"mocha-lcov-reporter": "0.0.1",
"redis": "^0.12.1",
"should": "^5.0.0",
"supertest": "^0.15.0"
},
"licence": "MIT",
"engines": {
"node": ">=0.10"
}
}