-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.4 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.4 KB
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": "@evernorth/aws-lambda-ts-event-handler",
"version": "0.0.1",
"description": "Minimalistic event handler & http router for Serverless applications",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"typedocMain": "src/index.ts",
"repository": "https://github.com/Evernorth/aws-lambda-ts-event-handler",
"license": "MIT",
"keywords": [],
"scripts": {
"init-environment": "husky install",
"build": "run-p build:*",
"build:main": "tsc -p tsconfig.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"watch": "jest --watch --group=unit",
"test": "npm run test:unit",
"test:unit": "jest --group=unit --detectOpenHandles --coverage --verbose --no-cache",
"test:e2e": "jest --group=e2e",
"test:prettier": "prettier \"src/**/*.ts\" --list-different",
"check-cli": "run-s test diff-integration-tests check-integration-tests",
"check-integration-tests": "run-s check-integration-test:*",
"diff-integration-tests": "mkdir -p diff && rm -rf diff/test && cp -r test diff/test && rm -rf diff/test/test-*/.git && cd diff && git init --quiet && git add -A && git commit --quiet --no-verify --allow-empty -m 'WIP' && echo '\\n\\nCommitted most recent integration test output in the \"diff\" directory. Review the changes with \"cd diff && git diff HEAD\" or your preferred git diff viewer.'",
"watch:build": "tsc -p tsconfig.json -w",
"watch:test": "nyc --silent ava --watch",
"cov": "run-s build test:unit cov:html cov:lcov && open-cli coverage/index.html",
"cov:html": "nyc report --reporter=html",
"cov:lcov": "nyc report --reporter=lcov",
"cov:send": "run-s cov:lcov && codecov",
"cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
"doc": "run-s doc:html && open-cli build/docs/index.html",
"doc:html": "typedoc src/ --exclude **/*.spec.ts --out build/docs",
"doc:json": "typedoc src/ --exclude **/*.spec.ts --json build/docs/typedoc.json",
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
"version": "standard-version",
"reset-hard": "git clean -dfx && git reset --hard && npm i",
"prepare-release": "run-s reset-hard test cov:check doc:html version doc:publish"
},
"engines": {
"node": ">=12"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.152",
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"ava": "^6.4.1",
"codecov": "^3.8.3",
"cspell": "^9.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-sort-exports": "^0.9.1",
"jest": "^30.0.5",
"jest-runner-groups": "^2.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"prettier-eslint": "^16.4.2",
"promptly": "^3.2.0",
"proxy-agent": "^6.5.0",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typedoc": "^0.28.7",
"typedoc-plugin-missing-exports": "^4.0.0",
"typescript": "^5.8.3"
},
"files": [
"lib/**/*"
],
"prettier": {
"singleQuote": true,
"bracketSpacing": true
},
"dependencies": {
"uuid": "^11.1.0"
}
}