-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.65 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
{
"name": "@localnerve/hmac-symmetric",
"version": "1.0.14",
"description": "A library to generate hmac and symmetrically encrypted payloads",
"main": "index.js",
"type": "module",
"exports": {
"require": "./cjs/index.cjs",
"import": "./lib/index.js",
"default": "./lib/index.js"
},
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "eslint .",
"pretranspile": "rimraf ./cjs",
"transpile": "babel lib -d cjs --out-file-extension .cjs",
"posttranspile": "node posttranspile.js",
"test": "cross-env HS_HMAC_SECRET=deadbeef HS_ENCRYPTION_KEY=56c6a9c6fb56a39e05fb993918ab01dda24439e2658dd7b06aa0f8fcc7fe0627 jest && npm run test-package",
"test-package": "node ./__test_package__/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/localnerve/hmac-symmetric.git"
},
"keywords": [
"hmac",
"symmetric",
"encryption",
"crypto"
],
"author": "Alex Grant <alex@localnerve.com>",
"maintainers": [
{
"name": "localnerve",
"email": "alex@localnerve.com",
"url": "https://github.com/localnerve"
}
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/localnerve/hmac-symmetric/issues"
},
"homepage": "https://github.com/localnerve/hmac-symmetric#readme",
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.18.0",
"cross-env": "^7.0.3",
"eslint": "^9.18.0",
"eslint-plugin-jest": "^28.10.0",
"glob": "^11.0.1",
"globals": "^15.14.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"tar": "^7.4.3"
},
"engines": {
"node": ">=18"
}
}