forked from DracoBlue/hateoas-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 963 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
33
34
35
36
37
38
39
{
"name": "hateoas-client",
"description": "A library to communicate with RESTful services. It's aim is to provide a very simple API to follow the links defined in a request response, thus achieving level 3 in Richardson Maturity Model.",
"main": "hateoas-client.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/DracoBlue/hateoas-client-js.git"
},
"keywords": [
"rest",
"hateoas",
"api",
"json",
"hal",
"atom",
"xml"
],
"author": "DracoBlue <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DracoBlue/hateoas-client-js/issues"
},
"homepage": "https://github.com/DracoBlue/hateoas-client-js",
"dependencies": {
"domino": "^1.0.18",
"jquery": "^2.1.3",
"xmlhttprequest": "^1.7.0"
},
"devDependencies": {
"express": "^4.12.3",
"mocha": "*"
}
}