-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 1.87 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 1.87 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
{
"name": "@byte-code/lambda-logging",
"version": "0.0.0-development",
"description": "Serverless Logging",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"semantic-release": "semantic-release"
},
"author": "apalumbo",
"license": "LGPL",
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^24.0.22",
"@types/lambda-log": "^2.2.0",
"@types/node": "10.17.5",
"semantic-release": "^17.3.4",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/byte-code/lambda-logging.git"
},
"jest": {
"runner": "groups",
"verbose": true,
"collectCoverage": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "/__tests__/.*(test|spec)\\.((t|j)sx?)$",
"testPathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/node_modules/"
],
"moduleNameMapper": {},
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"lambda-log": "^2.3.1"
},
"release": {
"branches": [
"main",
"next"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md"
]
}
]
]
}
}