forked from cujojs/rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.21 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
{
"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": "[email protected]",
"web": "http://twitter.com/scothis"
}
],
"contributors": [
{
"name": "Jeremy Grelle",
"email": "[email protected]"
},
{
"name": "John Hann",
"web": "http://unscriptable.com"
},
{
"name": "Michael Jackson",
"web": "https://github.com/mjackson"
}
],
"dependencies": {},
"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"
}
}