-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.51 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "build-lambda-layer",
"version": "0.3.8",
"description": "Build node awesome lambda layers with controls 🕹",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"bin": {
"build-lambda-layer": "dist/index.cjs",
"build-layer": "dist/index.cjs"
},
"scripts": {
"build": "pnpm run clean && (pnpm run build:util; pnpm run build:declarations)",
"build:util": "tsup src/index.ts --format esm,cjs",
"build:declarations": "tsc --project tsconfig.declarations.json",
"clean": "rimraf dist",
"cmd:quick-test": " src/index.ts foo --debug --output 'layer/'",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepublishOnly": "pnpm build",
"release": "release-it",
"test": "tsx tests/program.test.ts",
"typecheck": "tsc --noEmit",
"update": "codependence --update"
},
"author": "Jeff Wainwright <yowainwright@gmail.com> (https://jeffry.in)",
"license": "MIT",
"dependencies": {
"commander": "13.1.0",
"compare-versions": "6.1.1",
"cosmiconfig": "9.0.0",
"fast-glob": "3.3.3",
"fs-extra": "11.3.0",
"gradient-string": "3.0.0",
"validate-npm-package-name": "^6.0.0",
"zip-a-folder": "3.1.9"
},
"devDependencies": {
"@commitlint/cli": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@commitlint/prompt": "^19.3.0",
"@commitlint/prompt-cli": "19.8.0",
"@eslint/js": "^9.1.1",
"@types/fs-extra": "11.0.4",
"@types/gradient-string": "1.1.6",
"@types/node": "22.14.0",
"@types/rimraf": "4.0.5",
"@types/validate-npm-package-name": "4.0.2",
"@typescript-eslint/eslint-plugin": "8.29.0",
"@typescript-eslint/parser": "8.29.0",
"codependence": "0.3.1",
"eslint": "9.24.0",
"eslint-config-prettier": "10.1.1",
"globals": "^15.0.0",
"json5": "^2.2.3",
"prettier": "3.5.3",
"release-it": "18.1.2",
"rimraf": "6.0.1",
"tslib": "2.8.1",
"tsup": "8.4.0",
"tsutils": "^3.21.0",
"tsx": "^4.7.0",
"typescript": "5.8.3",
"typescript-eslint": "^7.7.1"
},
"keywords": [
"nodejs",
"aws",
"lambda",
"aws-lambda",
"lambda-layers"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yowainwright/build-lambda-layer.git"
},
"homepage": "https://github.com/yowainwright/build-lambda-layer#readme",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}