@apteva/agent-darwin-x64 0.2.0

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.
Files changed (3) hide show
  1. package/agent +0 -0
  2. package/index.js +2 -0
  3. package/package.json +18 -0
package/agent ADDED
Binary file
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ const path = require('path');
2
+ module.exports = path.join(__dirname, 'agent');
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@apteva/agent-darwin-x64",
3
+ "version": "0.2.0",
4
+ "description": "Apteva agent binary for macOS x64 (Intel)",
5
+ "os": [
6
+ "darwin"
7
+ ],
8
+ "cpu": [
9
+ "x64"
10
+ ],
11
+ "main": "index.js",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/apteva/agent.git"
15
+ },
16
+ "license": "MIT",
17
+ "preferUnplugged": true
18
+ }