-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.49 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
{
"name": "machinepack-http",
"version": "9.0.0",
"description": "Send HTTP requests, scrape webpages, and stream data in your JavaScript/Node.js/Sails.js app with a simple, `jQuery.get()`-like interface for sending HTTP requests and processing server responses.",
"scripts": {
"test": "npm run lint && npm run custom-tests",
"custom-tests": "node ./node_modules/mocha/bin/mocha test/*.js -R spec",
"lint": "node ./node_modules/eslint/bin/eslint . --ignore-pattern='test/' --max-warnings=0 && echo '✔ Your code looks good.'"
},
"keywords": [
"http",
"api",
"cloud",
"rest-api",
"curl",
"scraping",
"stream",
"request",
"response",
"machines",
"machinepack"
],
"author": "The Sails Company",
"license": "MIT",
"engines": {
"node": ">=6"
},
"dependencies": {
"@sailshq/lodash": "^3.10.2",
"@sailshq/request": "^2.88.2",
"machine": "^15.0.0-0",
"machinepack-urls": "^6.0.2-0",
"rttc": "^10.0.1"
},
"devDependencies": {
"eslint": "4.11.0",
"mocha": "3.0.2",
"sails": "0.12.13"
},
"repository": {
"type": "git",
"url": "[email protected]:mikermcneil/machinepack-http.git"
},
"machinepack": {
"friendlyName": "HTTP",
"machineDir": "lib/",
"machines": [
"send-http-request",
"get",
"get-stream",
"post",
"put",
"del",
"patch",
"negotiate-http-status"
],
"testsUrl": "https://travis-ci.org/mikermcneil/machinepack-http"
}
}