-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 1.84 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": "@jadsonlucena/signedaccess",
"version": "2.1.0",
"description": "Sign and verify URLs and cookies to add a layer of protection to publicly accessible routes",
"main": "./src/SignedAccess.js",
"engines": {
"node": ">=12"
},
"scripts": {
"test": "jest --coverage ./test",
"lint": "eslint ./src ./test --ext .js"
},
"files": [
"src/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JadsonLucena/SignedAccess.js.git"
},
"keywords": [
"signed-access",
"signed-url",
"signed-cookie",
"signed-requests",
"presigned-url",
"access-control",
"access-integrity",
"access-token",
"token-url",
"session-security"
],
"author": "JadsonLucena <[email protected]> (https://github.com/JadsonLucena)",
"license": "MIT",
"bugs": {
"url": "https://github.com/JadsonLucena/SignedAccess.js/issues"
},
"homepage": "https://github.com/JadsonLucena/SignedAccess.js#readme",
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@types/node": "latest",
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-plugin-jest": "latest",
"jest": "latest"
},
"jest": {
"collectCoverage": true,
"verbose": true,
"collectCoverageFrom": [
"./src/*.js"
],
"coverageReporters": [
"clover",
"json",
"lcov",
"text",
"html"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"eslintConfig": {
"plugins": [
"jest"
],
"env": {
"jest/globals": true
},
"extends": "standard"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}