forked from dhensby/node-http-message-signatures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "http-message-signatures",
"version": "0.1.2",
"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 test/**/*.ts"
},
"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": {
"@tsconfig/node12": "^1.0.11",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/node": "^12.20.55",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"chai": "^4.3.6",
"eslint": "^8.23.0",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
}
}