forked from JCMais/node-libcurl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.5 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
{
"name": "node-libcurl",
"version": "0.8.0b",
"author": "Jonathan Cardoso <me@jonathancardoso.com>",
"description": "Node bindings for libcurl. Based on the work from node-curl.",
"keywords": [
"node-curl",
"curl",
"libcurl",
"node-libcurl"
],
"license": "MIT",
"homepage": "https://github.com/JCMais/node-libcurl",
"repository": {
"type": "git",
"url": "https://github.com/tleasure/node-libcurl"
},
"bugs": {
"url": "https://github.com/JCMais/node-libcurl/issues"
},
"main": "./index.js",
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"test": "mocha test --reporter spec",
"docs": "jsdoc2md lib/*.js > api.md"
},
"binary": {
"module_name": "node_libcurl",
"module_path": "./lib/binding/",
"host": "https://github.com/JCMais/node-libcurl/releases/download",
"remote_path": "./v{version}/"
},
"bundledDependencies": [
"node-pre-gyp"
],
"dependencies": {
"bindings": "~1.2",
"debug": "^2.2",
"nan": "~2.2.0",
"node-gyp": "~3.3.0",
"node-pre-gyp": "~0.6",
"npmlog": "~2.0.2"
},
"devDependencies": {
"body-parser": "^1.12",
"cookie-parser": "^1.3",
"express": "^4.12",
"http-auth": "^2.2",
"ink-docstrap": "^1.1.2",
"jsdoc": "^3.3",
"jsdoc-to-markdown": "^1.3.3",
"mocha": "^2.2",
"multiparty": "^4.1",
"octonode": "^0.7.4",
"progress": "^1.1.8",
"should": "^8.0"
},
"engines": {
"node": ">= 0.10.0",
"npm": ">= 2.14"
}
}