UNPKG

854 BJavaScriptView Raw
1// Index of each item is equivalent to the major of zapier-platform-core version.
2// The next item will be for zapier-platform-core version of major 7.
3
4// node version listed here: https://docs.aws.amazon.com/lambda/latest/dg/current-supported-versions.html
5module.exports = [
6 { nodeVersion: '4.3.2', npmVersion: '>=2.14.12' }, // 0.x
7 { nodeVersion: '4.3.2', npmVersion: '>=2.14.12' }, // 1.x
8 { nodeVersion: '6.10.2', npmVersion: '>=3.10.10' }, // 2.x
9 { nodeVersion: '6.10.2', npmVersion: '>=3.10.10' }, // 3.x
10 { nodeVersion: '6.10.2', npmVersion: '>=3.10.10' }, // 4.x
11 { nodeVersion: '6.10.3', npmVersion: '>=3.10.10' }, // 5.x // patch version change on AWS
12 { nodeVersion: '6.10.3', npmVersion: '>=3.10.10' }, // 6.x
13 { nodeVersion: '8.10.0', npmVersion: '>=5.6.0' }, // 7.x
14 { nodeVersion: '8.10.0', npmVersion: '>=5.6.0' } // 8.x
15];