-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 1.97 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
{
"name": "http-message-signatures",
"version": "1.0.4",
"description": "HTTP message signature implementation",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint -c .eslintrc ./src/**/*.ts ./test/**/*.ts",
"lint:fix": "npm run lint --silent -- --fix",
"prepare": "npm run build",
"preversion": "npm run lint",
"test": "mocha -r ts-node/register -r test/bootstrap.ts test/**/*.ts",
"test:coverage": "nyc --reporter=cobertura --reporter=text-summary npm run test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dhensby/node-http-message-signatures.git"
},
"keywords": [
"http-message-signatures",
"message-signatures",
"signature"
],
"author": "Daniel Hensby",
"license": "ISC",
"bugs": {
"url": "https://github.com/dhensby/node-http-message-signatures/issues"
},
"files": [
"lib/"
],
"homepage": "https://github.com/dhensby/node-http-message-signatures#readme",
"devDependencies": {
"@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",
"@tsconfig/node12": "^12.1.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/node": "^12.20.55",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.8",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"chai": "^4.3.6",
"eslint": "^8.24.0",
"mocha": "^10.0.0",
"mockdate": "^3.0.5",
"nyc": "^15.1.0",
"semantic-release": "^21.0.7",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"dependencies": {
"structured-headers": "^1.0.1"
}
}