This repository was archived by the owner on Feb 6, 2025. It is now read-only.
forked from cujojs/rest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.44 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.44 KB
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
{
"name": "rest",
"version": "2.0.0",
"description": "RESTful HTTP client library",
"keywords": [
"rest",
"http",
"client",
"rest-template",
"spring",
"cujojs"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cujojs/rest.git"
},
"bugs": "https://github.com/cujojs/rest/issues",
"maintainers": [
{
"name": "Scott Andrews",
"email": "scothis@gmail.com",
"web": "http://twitter.com/scothis"
}
],
"contributors": [
{
"name": "Jeremy Grelle",
"email": "jeremy.grelle@gmail.com"
},
{
"name": "John Hann",
"web": "http://unscriptable.com"
},
{
"name": "Michael Jackson",
"web": "https://github.com/mjackson"
},
{
"name": "Sander Remie",
"web": "https://github.com/rmi7"
}
],
"dependencies": {
"https-proxy-agent": "^1.0.0"
},
"devDependencies": {
"when": "~3",
"wire": "~0.9",
"test-support": "~0.4",
"curl": "https://github.com/cujojs/curl/tarball/0.7.3",
"poly": "https://github.com/cujojs/poly/tarball/0.5.1"
},
"main": "./node",
"browser": "./browser",
"jspm": {
"registry": "npm",
"main": "./browser"
},
"scripts": {
"test": "npm run-script lint && npm run-script buster",
"start": "buster static -e browser",
"tunnel": "sauceme -m",
"lint": "jshint .",
"buster": "buster test --node",
"sauceme": "sauceme"
}
}