-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.73 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
{
"name": "string-crypto",
"version": "3.0.2",
"description": "Small, simple, and secure no-dependency library to encrypt and decrypt strings using PBKDF2 for key derivation and AES (defaulted to 256-bit / SHA512)",
"keywords": [
"encryption",
"decryption",
"string",
"PBKDF2",
"AES",
"cipheriv",
"NodeJS",
"crypto",
"encrypt",
"decrypt",
"security",
"cli"
],
"homepage": "https://simplyhexagonal.github.io/string-crypto/",
"repository": {
"type": "git",
"url": "https://github.com/simplyhexagonal/string-crypto"
},
"main": "dist/index.js",
"author": "Jean M. Lescure",
"license": "Apache-2.0",
"types": "dist/index.d.ts",
"runkitExampleFilename": "./runkit.js",
"bin": {
"string-crypto": "./bin/index.js"
},
"files": [
"package.json",
"bin",
"dist",
"runkit.js",
"README.md"
],
"scripts": {
"build": "rollup -c && rm -f dist/*.d.ts && cp src/index.d.ts dist/index.d.ts",
"dev": "concurrently \"rollup -cw\" \"nodemon --inspect runkit.js\"",
"test": "tsx ./src/index.test.ts",
"test:full": "tsx ./src/index.test.ts && npm run build && node runkit.js"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@types/aes-js": "^3.1.1",
"@types/crypto-js": "^4.2.2",
"@types/node": "^20.11.27",
"@types/pbkdf2": "^3.1.0",
"concurrently": "^5.3.0",
"crypto-js": "^4.2.0",
"nodemon": "^3.1.0",
"rollup": "^2.27.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.2",
"tslib": "^2.6.2",
"tsx": "^4.7.1",
"typescript": "^5.4.2"
}
}