-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 KB
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
{
"name": "@davodm/dgcrypt-node",
"version": "0.0.4",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir dist/cjs",
"build:esm": "cross-env BABEL_ENV=esm babel src --out-dir dist/esm",
"build": "npm run build:cjs && npm run build:esm",
"test": "jest"
},
"keywords": [
"encryption",
"decryption",
"aes-256-cbc",
"nodejs"
],
"author": "Davod Mozafari",
"license": "MIT",
"description": "A simple Nodejs library for encryption and decryption using AES-256-CBC to be usable in different language/devices.",
"repository": {
"type": "git",
"url": "git+https://github.com/davodm/dgcrypt-node.git"
},
"bugs": {
"url": "https://github.com/davodm/dgcrypt-node/issues"
},
"homepage": "https://github.com/davodm/dgcrypt-node",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.9",
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@babel/preset-env": "^7.24.8",
"cross-env": "^7.0.3",
"jest": "^29.7.0"
}
}