-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
50 lines (50 loc) · 1.06 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
{
"name": "rest-facade",
"version": "1.16.4",
"description": "Simple abstraction for consuming REST API endpoints",
"main": "src/index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "nyc mocha",
"test-watch": "mocha --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngonzalvez/rest-facade.git"
},
"keywords": [
"facade",
"rest",
"api"
],
"author": "Nicolás Gonzálvez",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngonzalvez/rest-facade/issues"
},
"homepage": "https://github.com/ngonzalvez/rest-facade#readme",
"devDependencies": {
"chai": "^3.4.0",
"mocha": "^10.2.0",
"nock": "^13.3.0",
"nyc": "^15.1.0",
"sinon": "^1.17.2"
},
"dependencies": {
"change-case": "^2.3.0",
"deepmerge": "^3.2.0",
"lodash.get": "^4.4.2",
"superagent": "^7.1.3"
},
"peerDependencies": {
"superagent-proxy": "^3.0.0"
},
"peerDependenciesMeta": {
"superagent-proxy": {
"optional": true
}
}
}