-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "skajs",
"version": "0.1.3",
"description": "Sign- and validate- data (dictionaries, strings) using symmetric-key algorithm.",
"license": "MIT",
"repository": "barseghyanartur/skajs",
"author": {
"name": "Artur Barseghyan",
"email": "artur.barseghyan@gmail.com",
"url": "https://github.com/barseghyanartur/"
},
"type": "commonjs",
"main": "./commonjs/index.js",
"exports": {
".": "./commonjs/index.js"
},
"module": "./esm/index.mjs",
"engines": {
"node": ">=14"
},
"scripts": {
"test": "nyc --reporter=html --reporter=json --reporter=lcov --reporter=text ava"
},
"ava": {
"files": [
"test.js",
"esm/test.mjs"
]
},
"keywords": [
"sign data",
"sign (HTTP) request",
"symmetric-key algorithm",
"encryption",
"sign URL"
],
"dependencies": {
"is-obj": ">=3.0.0"
},
"devDependencies": {
"ava": ">=3.15.0",
"axios": ">=0.24.0",
"nyc": ">=15.1.0",
"prettier": ">=2.3.2",
"tsd": ">=0.14.0",
"xo": ">=0.38.2"
}
}