forked from traverson/traverson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 2.61 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
103
104
105
106
107
108
109
110
111
112
113
{
"name": "traverson",
"version": "6.0.3",
"description": "Hypermedia API/HATEOAS client for Node.js and the browser",
"repository": "https://github.com/traverson/traverson.git",
"main": "traverson.js",
"author": {
"name": "Bastian Krol",
"email": "[email protected]"
},
"contributors": [
{
"name": "Julien Leroy",
"email": "[email protected]"
},
{
"name": "Ricardo Costa",
"email": "[email protected]"
},
{
"name": "Michael Tiller",
"email": "[email protected]"
},
{
"name": "subvertnormality",
"email": "[email protected]"
},
{
"name": "Craig Spaeth",
"email": "[email protected]"
},
{
"name": "Chad Lee",
"email": "[email protected]"
},
{
"name": "Max F. Albrecht",
"email": "[email protected]"
},
{
"name": "dimik",
"email": "[email protected]"
},
{
"name": "Jade Montagu",
"email": "[email protected]"
},
{
"name": "Igor Unanua",
"email": "[email protected]"
}
],
"license": "MIT",
"scripts": {
"test": "grunt",
"mocha": "mocha",
"build": "grunt"
},
"keywords": [
"JSON",
"REST",
"API",
"HATEOAS",
"hypertext",
"hypermedia",
"HAL"
],
"dependencies": {
"jsonpath-plus": "^0.16.0",
"minilog": "^3.0.0",
"request": "^2.28.0",
"resolve-url": "^0.2.1",
"superagent": "^3.3.1",
"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": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-mocha": "^1.0.2",
"grunt-mocha-test": "^0.13.2",
"load-grunt-tasks": "^3.5.0",
"mocha": "^3.0.2",
"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"
}
}