-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.66 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.66 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "com.tigerlight.api",
"version": "0.0.1",
"description": "TigerLight API",
"engines": {
"node": ">=20"
},
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"format": "eslint --cache --fix .",
"test:lint": "eslint .",
"tap": "c8 -r text -r lcov tap",
"test:packages": "npm run tap",
"test": "npm run test:lint && npm run test:packages",
"prepare": "husky install",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/enkompass/com.tigerlight.api.git"
},
"keywords": [
"tigerlight"
],
"bugs": {
"url": "https://github.com/enkompass/com.tigerlight.api/issues"
},
"homepage": "https://github.com/enkompass/com.tigerlight.api#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0,
"always",
200
]
}
},
"release": {
"branches": [
"main"
],
"tagFormat": "${version}"
},
"devDependencies": {
"@aws-sdk/client-ssm": "^3.118.1",
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"awscred": "^1.5.0",
"c8": "^7.12.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-testcafe": "^0.2.1",
"eslint-plugin-unicorn": "^48.0.1",
"husky": "^8.0.1",
"prettier": "2.7.1",
"quibble": "^0.6.14",
"semantic-release": "^19.0.3",
"serverless": "^3.19.0",
"sinon": "^18.0.0",
"tap": "^16.3.1",
"testdouble": "^3.16.7"
},
"dependencies": {
"@hapi/bourne": "^3.0.0",
"@middy/core": "^3.0.4",
"@middy/http-cors": "^3.0.4",
"@middy/http-error-handler": "^3.0.4",
"@middy/http-event-normalizer": "^3.0.4",
"@middy/http-json-body-parser": "^3.0.4",
"@middy/input-output-logger": "^3.0.4",
"@middy/ssm": "^3.0.4",
"aws-signed-axios": "^1.1.0",
"aws-xray-sdk-core": "^3.3.6",
"lodash": "^4.17.21",
"pino": "^8.0.0"
},
"license": "UNLICENSED",
"private": true
}