node-abi 2.11.0 → 2.15.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 (2) hide show
  1. package/index.js +7 -4
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -52,11 +52,12 @@ var supportedTargets = [
52
52
  {runtime: 'node', target: '5.0.0', abi: '47', lts: false},
53
53
  {runtime: 'node', target: '6.0.0', abi: '48', lts: false},
54
54
  {runtime: 'node', target: '7.0.0', abi: '51', lts: false},
55
- {runtime: 'node', target: '8.0.0', abi: '57', lts: new Date() < new Date(2019, 4, 31)},
55
+ {runtime: 'node', target: '8.0.0', abi: '57', lts: false},
56
56
  {runtime: 'node', target: '9.0.0', abi: '59', lts: false},
57
57
  {runtime: 'node', target: '10.0.0', abi: '64', lts: new Date(2018, 10, 1) < new Date() && new Date() < new Date(2020, 4, 31)},
58
58
  {runtime: 'node', target: '11.0.0', abi: '67', lts: false},
59
- {runtime: 'node', target: '12.0.0', abi: '72', lts: false},
59
+ {runtime: 'node', target: '12.0.0', abi: '72', lts: new Date(2019, 9, 21) < new Date() && new Date() < new Date(2020, 9, 31)},
60
+ {runtime: 'node', target: '13.0.0', abi: '79', lts: false},
60
61
  {runtime: 'electron', target: '0.36.0', abi: '47', lts: false},
61
62
  {runtime: 'electron', target: '1.1.0', abi: '48', lts: false},
62
63
  {runtime: 'electron', target: '1.3.0', abi: '49', lts: false},
@@ -70,7 +71,9 @@ var supportedTargets = [
70
71
  {runtime: 'electron', target: '4.0.0', abi: '64', lts: false},
71
72
  {runtime: 'electron', target: '4.0.4', abi: '69', lts: false},
72
73
  {runtime: 'electron', target: '5.0.0', abi: '70', lts: false},
73
- {runtime: 'electron', target: '6.0.0', abi: '73', lts: false}
74
+ {runtime: 'electron', target: '6.0.0', abi: '73', lts: false},
75
+ {runtime: 'electron', target: '7.0.0', abi: '75', lts: false},
76
+ {runtime: 'electron', target: '8.0.0', abi: '76', lts: false}
74
77
  ]
75
78
 
76
79
  var additionalTargets = [
@@ -100,7 +103,7 @@ var deprecatedTargets = [
100
103
  ]
101
104
 
102
105
  var futureTargets = [
103
- {runtime: 'electron', target: '7.0.0-beta.0', abi: '75', lts: false}
106
+ {runtime: 'electron', target: '9.0.0-beta.1', abi: '80', lts: false}
104
107
  ]
105
108
 
106
109
  var allTargets = deprecatedTargets
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-abi",
3
- "version": "2.11.0",
3
+ "version": "2.15.0",
4
4
  "description": "Get the Node ABI for a given target and runtime, and vice versa.",
5
5
  "main": "index.js",
6
6
  "scripts": {