electron-osx-sign
Advanced tools
@@ -59,2 +59,6 @@ | ||
| --timestamp=timestamp | ||
| Specify the URL of the timestamp authority server, default to server provided by Apple. | ||
| Disable the timestamp service with ``none''. | ||
| --type=type | ||
@@ -61,0 +65,0 @@ Specify whether to sign app for development or for distribution. |
+1
-1
| { | ||
| "name": "electron-osx-sign", | ||
| "version": "0.4.4", | ||
| "version": "0.4.5", | ||
| "description": "Codesign Electron macOS apps", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
+38
-52
@@ -204,2 +204,7 @@ # electron-osx-sign [![npm][npm_img]][npm_url] [![Build Status][travis_img]][travis_url] | ||
| `timestamp` - *String* | ||
| Specify the URL of the timestamp authority server, default to server provided by Apple. Please note that this default server may not support signatures not furnished by Apple. | ||
| Disable the timestamp service with `none`. | ||
| `type` - *String* | ||
@@ -351,6 +356,6 @@ | ||
| > electron-osx-sign@0.4.4 pretest electron-osx-sign | ||
| > electron-osx-sign@0.4.5 pretest electron-osx-sign | ||
| > rimraf test/work | ||
| > electron-osx-sign@0.4.4 test electron-osx-sign | ||
| > electron-osx-sign@0.4.5 test electron-osx-sign | ||
| > standard && tape test | ||
@@ -364,74 +369,55 @@ | ||
| ok 1 app signed | ||
| ok 2 app flattened | ||
| # defaults-test:v0.30.8-darwin-x64 | ||
| ok 2 app signed | ||
| # defaults-test:v0.31.2-darwin-x64 | ||
| ok 3 app signed | ||
| ok 4 app flattened | ||
| # defaults-test:v0.31.2-darwin-x64 | ||
| ok 5 app signed | ||
| ok 6 app flattened | ||
| # defaults-test:v0.32.3-darwin-x64 | ||
| ok 7 app signed | ||
| ok 8 app flattened | ||
| ok 4 app signed | ||
| # defaults-test:v0.33.9-darwin-x64 | ||
| ok 9 app signed | ||
| ok 10 app flattened | ||
| ok 5 app signed | ||
| # defaults-test:v0.34.5-darwin-x64 | ||
| ok 11 app signed | ||
| ok 12 app flattened | ||
| ok 6 app signed | ||
| # defaults-test:v0.34.5-mas-x64 | ||
| ok 13 app signed | ||
| ok 14 app flattened | ||
| ok 7 app signed | ||
| # defaults-test:v0.35.6-darwin-x64 | ||
| ok 15 app signed | ||
| ok 16 app flattened | ||
| ok 8 app signed | ||
| # defaults-test:v0.35.6-mas-x64 | ||
| ok 17 app signed | ||
| ok 18 app flattened | ||
| ok 9 app signed | ||
| # defaults-test:v0.36.12-darwin-x64 | ||
| ok 19 app signed | ||
| ok 20 app flattened | ||
| ok 10 app signed | ||
| # defaults-test:v0.36.12-mas-x64 | ||
| ok 21 app signed | ||
| ok 22 app flattened | ||
| ok 11 app signed | ||
| # defaults-test:v0.37.8-darwin-x64 | ||
| ok 23 app signed | ||
| ok 24 app flattened | ||
| ok 12 app signed | ||
| # defaults-test:v0.37.8-mas-x64 | ||
| ok 25 app signed | ||
| ok 26 app flattened | ||
| ok 13 app signed | ||
| # defaults-test:v1.0.2-darwin-x64 | ||
| ok 27 app signed | ||
| ok 28 app flattened | ||
| ok 14 app signed | ||
| # defaults-test:v1.0.2-mas-x64 | ||
| ok 29 app signed | ||
| ok 30 app flattened | ||
| ok 15 app signed | ||
| # defaults-test:v1.1.3-darwin-x64 | ||
| ok 31 app signed | ||
| ok 32 app flattened | ||
| ok 16 app signed | ||
| # defaults-test:v1.1.3-mas-x64 | ||
| ok 33 app signed | ||
| ok 34 app flattened | ||
| ok 17 app signed | ||
| # defaults-test:v1.2.8-darwin-x64 | ||
| ok 35 app signed | ||
| ok 36 app flattened | ||
| ok 18 app signed | ||
| # defaults-test:v1.2.8-mas-x64 | ||
| ok 37 app signed | ||
| ok 38 app flattened | ||
| ok 19 app signed | ||
| # defaults-test:v1.3.7-darwin-x64 | ||
| ok 39 app signed | ||
| ok 40 app flattened | ||
| ok 20 app signed | ||
| # defaults-test:v1.3.7-mas-x64 | ||
| ok 41 app signed | ||
| ok 42 app flattened | ||
| # defaults-test:v1.4.14-darwin-x64 | ||
| ok 43 app signed | ||
| ok 44 app flattened | ||
| # defaults-test:v1.4.14-mas-x64 | ||
| ok 45 app signed | ||
| ok 46 app flattened | ||
| ok 21 app signed | ||
| # defaults-test:v1.4.15-darwin-x64 | ||
| ok 22 app signed | ||
| # defaults-test:v1.4.15-mas-x64 | ||
| ok 23 app signed | ||
| # defaults-test:v1.6.8-darwin-x64 | ||
| ok 24 app signed | ||
| # defaults-test:v1.6.8-mas-x64 | ||
| ok 25 app signed | ||
| # teardown | ||
| 1..46 | ||
| # tests 46 | ||
| # pass 46 | ||
| 1..25 | ||
| # tests 25 | ||
| # pass 25 | ||
@@ -438,0 +424,0 @@ # ok |
+3
-0
@@ -146,2 +146,5 @@ /** | ||
| } | ||
| if (opts.timestamp) { | ||
| args.push('--timestamp', opts.timestamp) | ||
| } | ||
@@ -148,0 +151,0 @@ var promise |
+0
-4
| var sign = require('..') | ||
| var flat = require('..').flat | ||
@@ -22,5 +21,2 @@ var waterfall = require('run-waterfall') | ||
| t.pass('app signed') | ||
| flat(Object.create(opts), cb) | ||
| }, function (cb) { | ||
| t.pass('app flattened') | ||
| cb() | ||
@@ -27,0 +23,0 @@ } |
+2
-1
@@ -18,4 +18,5 @@ { | ||
| "1.3.7", | ||
| "1.4.14" | ||
| "1.4.15", | ||
| "1.6.8" | ||
| ] | ||
| } |
@@ -36,5 +36,7 @@ /** | ||
| var identityFound = line.substring(line.indexOf('"') + 1, line.lastIndexOf('"')) | ||
| var identityHashFound = line.substring(line.indexOf(')') + 2, line.indexOf('"') - 1) | ||
| debuglog('Identity:', '\n', | ||
| '> Name:', identityFound) | ||
| return identityFound | ||
| '> Name:', identityFound, '\n', | ||
| '> Hash:', identityHashFound) | ||
| return identityHashFound | ||
| } | ||
@@ -41,0 +43,0 @@ }) |
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
72621
0.23%1532
0.13%438
-3.1%