-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.6 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
{
"name": "@mattrglobal/http-signatures",
"version": "4.1.1",
"description": "An implementation of Http request signing and verifying",
"private": false,
"main": "lib/index.js",
"engines": {
"node": "=14 || =16 || >=18"
},
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mattrglobal/http-signatures.git"
},
"author": "MATTR",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mattrglobal/http-signatures/issues"
},
"homepage": "https://github.com/mattrglobal/http-signatures#readme",
"scripts": {
"build": "rm -rf lib/ && tsc --pretty",
"clean": "rm -rf lib/",
"test": "jest --passWithNoTests",
"pre-pr": "yarn format && yarn lint:fix && yarn build && yarn test",
"lint": "eslint . --ext .ts --color --format=table && prettier --check '**/*.{js,ts,md,json,yml}'",
"lint:fix": "eslint . --ext .ts --color --format=table --fix && yarn format",
"format": "prettier --write '**/*.{js,ts,md,json,yml}'",
"docs": "typedoc --plugin typedoc-plugin-markdown --theme docusaurus",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"version:release": "yarn version --message \"chore(release): publish\"",
"publish:stable": "./scripts/publish_stable.sh",
"publish:unstable": "./scripts/publish_unstable.sh",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "17.7.2",
"@commitlint/config-conventional": "17.7.0",
"@types/express": "4.17.18",
"@types/jest": "29.5.5",
"@types/ramda": "0.27.32",
"@typescript-eslint/eslint-plugin": "5.28.0",
"@typescript-eslint/parser": "5.28.0",
"body-parser": "1.20.3",
"conventional-changelog": "5.1.0",
"conventional-changelog-cli": "4.1.0",
"eslint": "8.51.0",
"eslint-formatter-table": "7.32.1",
"eslint-plugin-functional": "4.2.1",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"express": "4.21.0",
"husky": "8.0.1",
"jest": "29.7.0",
"prettier": "2.7.1",
"pretty-quick": "2.0.1",
"ts-jest": "29.1.1",
"ts-node": "8.4.1",
"typedoc": "0.22.17",
"typedoc-plugin-markdown": "3.12.1",
"typescript": "4.7.3"
},
"dependencies": {
"@stablelib/base64": "1.0.1",
"@stablelib/sha256": "1.0.1",
"@stablelib/sha512": "1.0.1",
"buffer": "6.0.3",
"neverthrow": "4.3.0",
"ramda": "0.27.1",
"structured-headers": "0.5.0",
"url": "0.11.0"
}
}