-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
60 lines (60 loc) · 1.39 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
{
"name": "escher-auth",
"description": "Library for HTTP request signing (JavaScript implementation)",
"version": "4.0.1",
"homepage": "https://github.com/emartech/escher-js",
"author": {
"name": "Emarsys Technologies"
},
"repository": {
"type": "git",
"url": "https://github.com/emartech/escher-js.git"
},
"bugs": {
"url": "https://github.com/emartech/escher-js/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/emartech/escher-js/blob/master/LICENSE"
}
],
"main": "lib/escher",
"engines": {
"node": ">=16"
},
"scripts": {
"test": "npm run code-style && npm run lint && npm run test:tape",
"test:tape": "tape spec/tape-tests.spec.js | faucet",
"prettier": "prettier --write lib/**/*.js spec/**/*.js",
"lint": "eslint lib/**/*.js spec/**/*.js",
"code-style": "prettier --check lib/**/*.js spec/**/*.js"
},
"keywords": [
"escher",
"js",
"hmac",
"sha",
"aws",
"signature",
"http",
"request",
"rest",
"authentication",
"api"
],
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-emarsys": "^5.1.0",
"eslint-plugin-security": "^3.0.0",
"faucet": "0.0.4",
"prettier": "^1.19.1",
"ramda": "^0.30.1",
"recursive-readdir": "^2.2.3",
"sinon": "^18.0.0",
"tape": "^4.17.0"
},
"dependencies": {
"dateformat": "4.6.3"
}
}