forked from traverson/traverson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.76 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
{
"name": "traverson",
"version": "0.13.0",
"author": "Bastian Krol",
"description": "Hypermedia API/HATEOAS client for Node.js and the browser",
"repository": "https://github.com/basti1302/traverson.git",
"scripts": {
"test": "grunt"
},
"main": "./traverson",
"keywords": [
"JSON",
"REST",
"API",
"HATEOAS",
"hypertext",
"hypermedia",
"HAL"
],
"dependencies": {
"JSONPath": "^0.10.0",
"halfred": "^0.3.0",
"minilog": "^2.0.2",
"request": "^2.28.0",
"resolve-url": "^0.2.1",
"underscore.string": "^2.3.3",
"url-template": "^2.0.4"
},
"devDependencies": {
"chai": "^1.9.1",
"express": "^3.5.2",
"grunt": "^0.4.4",
"grunt-browserify": "^2.0.8",
"grunt-contrib-clean": "^0.5.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-uglify": "^0.4.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-phantomjs": "^0.4.3",
"grunt-mocha-test": "^0.10.2",
"mocha": "^1.18.2",
"sinon": "^1.9.1",
"sinon-chai": "^2.5.0",
"brfs": "^1.1.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,
"superagent": false,
"url": "./browser/lib/shim/url-resolve.js"
},
"testling": {
"browsers": [
"ie9",
"ie10",
"ff/20",
"ff/23",
"ff/nightly",
"chrome/29",
"chrome/canary",
"opera/15",
"opera/next",
"safari/6.0"
],
"harness": "mocha",
"files": [
"test/json*.js"
]
},
"engines": {
"node": ">= 0.10.x"
}
}