forked from traverson/traverson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "traverson",
"version": "3.1.3",
"description": "Hypermedia API/HATEOAS client for Node.js and the browser",
"repository": "https://github.com/basti1302/traverson.git",
"main": "traverson.js",
"author": {
"name": "Bastian Krol",
"email": "bastian.krol@web.de"
},
"contributors": [
{
"name": "Ricardo Costa",
"email": "rdscosta@gmail.com"
},
{
"name": "Michael Tiller",
"email": "michael.tiller@gmail.com"
},
{
"name": "subvertnormality",
"email": "andy@subvertnormality.com"
},
{
"name": "Craig Spaeth",
"email": "craigspaeth@gmail.com"
},
{
"name": "Chad Lee",
"email": "git@chadly.net"
},
{
"name": "Max F. Albrecht",
"email": "1@178.is"
},
{
"name": "dimik",
"email": "dimik@yandex.ru"
}
],
"license": "MIT",
"scripts": {
"test": "grunt"
},
"keywords": [
"JSON",
"REST",
"API",
"HATEOAS",
"hypertext",
"hypermedia",
"HAL"
],
"dependencies": {
"jsonpath-plus": "^0.15.0",
"minilog": "^3.0.0",
"request": "^2.28.0",
"resolve-url": "^0.2.1",
"superagent": "^2.0.0",
"underscore.string": "^3.3.4",
"url-template": "^2.0.4"
},
"devDependencies": {
"brfs": "^1.1.1",
"btoa": "^1.1.2",
"chai": "^3.5.0",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-mocha": "^1.0.2",
"grunt-mocha-test": "^0.12.7",
"load-grunt-tasks": "^3.5.0",
"mocha": "^2.5.3",
"poll-forever": "^1.0.0",
"proxyquire": "^1.7.1",
"proxyquire-universal": "^1.0.8",
"proxyquireify": "^3.0.0",
"sinon": "^1.9.1",
"sinon-chai": "^2.5.0",
"traverson-mock-response": "1.1.0",
"traverson-test-server": "1.8.1"
},
"browser": {
"minilog": "./browser/lib/shim/log.js",
"request": "./browser/lib/shim/request.js",
"util": "./browser/lib/shim/node-util.js",
"underscore.string": "./browser/lib/shim/underscore-string-reduced.js",
"../server/app": false,
"indexof": false,
"emitter": false,
"reduce": false,
"traverson-test-server": false,
"url": "./browser/lib/shim/url-resolve.js"
},
"engines": {
"node": ">= 0.10.x"
}
}