-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
85 lines (85 loc) · 2.17 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
{
"name": "hmac-auth-express",
"type": "module",
"version": "9.0.0",
"description": "Express middleware for HMAC authentication",
"keywords": [
"nodejs",
"javascript",
"middleware",
"express",
"node",
"authentication",
"express-middleware",
"auth",
"hmac"
],
"engines": {
"node": ">=6.6.0"
},
"main": "./dist/index.js",
"typings": "./dist",
"scripts": {
"prepack": "tsc",
"docs": "typedoc src",
"lint:check": "eslint",
"lint:fix": "eslint --fix",
"style:check": "prettier . --check",
"style:fix": "prettier . --write",
"test": "./scripts/run-tests.sh",
"benchmark": "./scripts/run-benchmark.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/connorjburton/hmac-auth-express.git"
},
"author": "Connor Burton",
"license": "MIT",
"bugs": {
"url": "https://github.com/connorjburton/hmac-auth-express/issues"
},
"homepage": "https://github.com/connorjburton/hmac-auth-express#readme",
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/changelog",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"devDependencies": {
"@commitlint/config-conventional": "^17.7.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.4",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^11.0.7",
"@types/express": "^4.17.17",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.34.0",
"express": "^4.18.2",
"got": "^13.0.0",
"prettier": "^3.0.3",
"semantic-release": "^22.0.0",
"typedoc": "^0.25.1",
"typescript": "5.2.2"
},
"peerDependencies": {
"express": "^4.0.0"
}
}