-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.96 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "lambda-runtime-builder",
"version": "0.0.0",
"description": "",
"exports": "./dist/index.js",
"type": "module",
"bin": "./dist/bin/index.js",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"build": "rimraf dist && tsc",
"lint": "eslint .",
"prepare": "husky install",
"githook:pre-push": "npm run prettier && npm run lint",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"start": "node --loader ts-node/esm src/bin/index.ts",
"start:build": "node dist/bin/cli.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dnalborczyk/lambda-runtime-builder.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/dnalborczyk/lambda-runtime-builder/issues"
},
"homepage": "https://github.com/dnalborczyk/lambda-runtime-builder#readme",
"dependencies": {
"archiver": "5.3.0",
"aws-lambda-ric": "https://github.com/dnalborczyk/aws-lambda-nodejs-runtime-interface-client.git",
"figures": "4.0.0",
"fs-extra": "10.0.0",
"ink": "3.2.0",
"ink-select-input": "4.2.1",
"meow": "10.1.2",
"node-fetch": "3.1.0",
"react": "17.0.2",
"semver": "7.3.5",
"tar": "6.1.11"
},
"devDependencies": {
"@types/archiver": "5.1.1",
"@types/fs-extra": "9.0.13",
"@types/node": "16.11.11",
"@types/react": "17.0.37",
"@types/semver": "7.3.9",
"@types/tar": "6.1.1",
"@typescript-eslint/eslint-plugin": "5.5.0",
"@typescript-eslint/parser": "5.5.0",
"eslint": "8.3.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "16.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"prettier": "2.5.0",
"rimraf": "3.0.2",
"ts-node": "10.4.0",
"typescript": "4.5.2"
}
}