-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 954 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "lambda-runtimes",
"description": "Canonical list of AWS Lambda runtime identifiers and corresponding CPU architectures",
"version": "2.0.5",
"type": "module",
"module": "./esm/index.js",
"main": "./cjs/index.js",
"exports": {
"import": "./esm/index.js",
"default": "./cjs/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/architect/lambda-runtimes.git"
},
"license": "Apache-2.0",
"scripts": {
"lint": "eslint . --fix",
"test": "npm run lint && npm run test:unit",
"test:unit": "tape 'test/unit/**/*-test.js' | tap-arc",
"rc": "npm version prerelease --preid RC"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@architect/eslint-config": "^2.1.2",
"eslint": "^8.56.0",
"tap-arc": "^1.2.2",
"tape": "~5.7.5"
},
"files": [
"cjs/*",
"esm/*.js"
],
"eslintConfig": {
"extends": "@architect/eslint-config"
}
}