-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
94 lines (94 loc) · 3.09 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
90
91
92
93
94
{
"name": "@americanexpress/lumberjack",
"version": "1.2.0",
"description": "Lumberjack is a minimal, configurable Console with utilities.",
"keywords": [
"logging",
"format",
"logs",
"log"
],
"license": "Apache-2.0",
"homepage": "https://github.com/americanexpress/lumberjack",
"bugs": {
"url": "https://github.com/americanexpress/lumberjack/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/americanexpress/lumberjack.git"
},
"contributors": [
"Andres Escobar <Andres.Escobar@aexp.com> (https://github.com/anescobar1991)",
"James Singleton <James.Singleton1@aexp.com> (https://github.com/JamesSingleton)",
"Jamie King <Jamie.King@aexp.com> (https://github.com/10xLaCroixDrinker)",
"Jonathan Adshead <Jonathan.Adshead@aexp.com> (https://github.com/JAdshead)",
"Michael Tobia <Michael.M.Tobia@aexp.com> (https://github.com/Francois-Esquire)",
"Michael Tomcal <Michael.A.Tomcal@aexp.com> (https://github.com/mtomcal)",
"Stephanie Coates <Stephanie.Coates1@aexp.com> (https://github.com/stephaniecoates)",
"Nelly Kiboi <Nelly.J.Kiboi@aexp.com> (https://github.com/nellyk)",
"Nickolas Oliver <nickolas.oliver@aexp.com> (https://github.com/PixnBits)"
],
"main": "lib/index.js",
"module": "src/index.js",
"scripts": {
"build": "babel src -d lib",
"test": "npm run test:unit && npm run test:lint",
"test:git-history": "commitlint --from origin/main --to HEAD",
"test:lint": "eslint --ext .js,.md,.snap .",
"test:lockfile": "lockfile-lint -p package-lock.json -t npm -a npm -o https: -c -i",
"test:unit": "jest",
"prepack": "npm run test && npm run build",
"posttest": "npm run test:lockfile && npm run test:git-history",
"prepare": "husky install"
},
"dependencies": {
"on-finished": "^2.4.1"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.4",
"@semantic-release/npm": "^10.0.4",
"@semantic-release/release-notes-generator": "^11.0.4",
"amex-jest-preset": "^7.0.0",
"babel-jest": "^29.6.2",
"babel-preset-amex": "^4.0.1",
"eslint": "^8.46.0",
"eslint-config-amex": "^16.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jest-dom": "^4.0.3",
"husky": "^8.0.3",
"jest": "^29.6.2",
"lockfile-lint": "^4.12.0",
"semantic-release": "^21.0.7"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}