-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.45 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
{
"name": "simple-hmac-auth",
"version": "4.0.0",
"description": "Library designed to make building APIs that use HMAC signatures simple.",
"keywords": [
"authentication",
"request signing",
"request signatures",
"hmac",
"signatures",
"request",
"signing",
"api",
"api security"
],
"homepage": "https://github.com/jessety/simple-hmac-auth#readme",
"bugs": {
"url": "https://github.com/jessety/simple-hmac-auth/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jessety/simple-hmac-auth.git"
},
"license": "MIT",
"author": "Jesse Youngblood",
"type": "commonjs",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"directories": {
"lib": "lib",
"example": "examples",
"test": "test"
},
"files": [
"/lib"
],
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf lib",
"format": "sort-package-json && eslint --fix .",
"lint": "eslint . && editorconfig-checker .",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"@jessety/eslint-config": "^1.0.6",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"editorconfig-checker": "^4.0.2",
"eslint": "^7.27.0",
"jest": "^26.5.3",
"rimraf": "^3.0.2",
"sort-package-json": "^1.50.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
}
}