-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.37 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": "egoroof-blowfish",
"version": "4.0.1",
"description": "Blowfish encryption library for browsers and Node.js",
"main": "dist/blowfish.mjs",
"types": "./egoroof-blowfish.d.ts",
"scripts": {
"lint": "eslint src test tools",
"build": "npm run build:bundle && npm run build:compress && node tools/distSize.mjs",
"build:bundle": "rollup -i src/Blowfish.mjs -o dist/blowfish.mjs",
"build:compress": "terser dist/blowfish.mjs -o dist/blowfish.mjs -m -c --module",
"test": "npm run prettier:check && npm run lint && npm run build && npm run mocha",
"mocha": "node --test --test-reporter spec",
"preversion": "npm test",
"version": "git add package.json package-lock.json",
"postversion": "git push && git push --tags && npm publish",
"prettier:write": "prettier --write .",
"prettier:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/egoroof/blowfish.git"
},
"keywords": [
"blowfish",
"cipher",
"ecb",
"cbc",
"encryption",
"decryption",
"library"
],
"author": "egoroof",
"files": [
"LICENSE.md",
"README.md",
"dist/blowfish.mjs",
"egoroof-blowfish.d.ts"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.11.1",
"eslint": "^9.11.1",
"prettier": "^3.3.3",
"rollup": "^4.22.4",
"terser": "^5.34.0"
}
}