@node-wreq/darwin-x64 1.0.0-rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,14 @@
1
+ # @node-wreq/darwin-x64
2
+
3
+ This package only contains the prebuilt native platform binary.
4
+
5
+ It is a helper package used by [`node-wreq`](https://github.com/StopMakingThatBigFace/node-wreq).
6
+
7
+ You should install the main package instead:
8
+
9
+ ```bash
10
+ npm install node-wreq
11
+ ```
12
+
13
+ Target triple: `x86_64-apple-darwin`
14
+ Binary: `node-wreq.darwin-x64.node`
Binary file
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@node-wreq/darwin-x64",
3
+ "version": "1.0.0-rc1",
4
+ "description": "Prebuilt native binding for node-wreq on x86_64-apple-darwin",
5
+ "license": "MIT",
6
+ "author": "StopMakingThatBigFace",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/StopMakingThatBigFace/node-wreq.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/StopMakingThatBigFace/node-wreq/issues"
13
+ },
14
+ "homepage": "https://github.com/StopMakingThatBigFace/node-wreq#readme",
15
+ "os": [
16
+ "darwin"
17
+ ],
18
+ "cpu": [
19
+ "x64"
20
+ ],
21
+ "main": "./node-wreq.darwin-x64.node",
22
+ "files": [
23
+ "node-wreq.darwin-x64.node",
24
+ "README.md"
25
+ ],
26
+ "publishConfig": {
27
+ "access": "public"
28
+ }
29
+ }