-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 987 Bytes
/
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
{
"name": "boho",
"version": "1.0.2",
"description": "Encryption, authentication, Secure communication",
"type": "module",
"exports": {
"import": "./dist/boho.js",
"require": "./dist/boho.cjs"
},
"browser": "./dist/boho.min.js",
"jsdelivr": "./dist/boho.min.js",
"unpkg": "./dist/boho.min.js",
"keywords": [
"SSL",
"cipher",
"crypto",
"encryption",
"보호",
"암호"
],
"homepage": "https://github.com/remocons/boho#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/remocons/boho.git"
},
"author": {
"name": "Lee Taeo",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.21.2"
},
"dependencies": {
"meta-buffer-pack": "^2.0.3"
},
"scripts": {
"build": "rollup -c",
"test": "node --test"
}
}