-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.38 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
{
"name": "cf-functions",
"version": "1.1.3",
"description": "Framework for creating, testing and deploying AWS CloudFront Functions.",
"keywords": [
"cloud front",
"cloud front functions",
"aws"
],
"files": [
".build",
"README.md"
],
"repository": "https://github.com/burketyler/cf-functions",
"author": "burketyler",
"engines": {
"node": ">=14.5.0"
},
"license": "MIT",
"type": "module",
"main": ".build/index.js",
"bin": {
"cf-functions": ".build/src/cli/index.js"
},
"scripts": {
"precommit": "yarn prettier:fix && yarn lint:fix",
"prepare": "husky install",
"semantic-release": "semantic-release",
"docs": "(cd docs && yarn start)",
"prettier:check": "prettier --check !docs/**/* !examples/**/* **/* --loglevel error --no-error-on-unmatched-pattern",
"prettier:fix": "prettier --write !docs/**/* !examples/**/* **/*",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"clean": "rm -rf .build",
"build": "yarn clean && tsc && chmod +x .build/src/cli/index.js",
"cli": "ts-node-esm src/cli/index.ts"
},
"dependencies": {
"@types/uuid": "8.3.4",
"aws-sdk": "2.1248.0",
"chalk": "5.1.2",
"clone-deep": "4.0.1",
"dotenv": "16.0.3",
"joi": "17.7.0",
"ora": "6.1.2",
"uuid": "9.0.0",
"yargs": "17.6.2"
},
"devDependencies": {
"@commitlint/cli": "17.2.0",
"@commitlint/config-conventional": "17.2.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@types/clone-deep": "4.0.1",
"@types/node": "18.11.9",
"@types/yargs": "17.0.13",
"@typescript-eslint/eslint-plugin": "5.42.0",
"@typescript-eslint/parser": "5.42.0",
"eslint": "8.27.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.2",
"jest": "29.3.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"semantic-release": "^19.0.5",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*.js": "eslint --fix",
"*.cts": "eslint --fix",
"*.cjs": "eslint --fix",
"*.mts": "eslint --fix",
"*.mjs": "eslint --fix",
"*.json": "prettier --write",
"*.md": "prettier --write",
"*.yml": "prettier --write"
}
}