-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.17 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
{
"name": "otpus",
"version": "1.1.0",
"description": "General purpose cipher for Node & browser",
"main": "src/index.js",
"cjs": "dist/otpus.cjs",
"esm": "dist/otpus.mjs",
"browser": "dist/otpus.min.js",
"browser_esm": "dist/otpus.esm.js",
"jsnext:main": "dist/otpus.esm.js",
"type": "module",
"exports": {
"import": "./src/index.js",
"require": "./dist/otpus.cjs"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "mocha"
},
"keywords": [
"암호",
"crypto",
"encrypt",
"XOR",
"OTP",
"SHA",
"HMAC",
"random"
],
"homepage": "https://github.com/remocons/otpus#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/remocons/otpus.git"
},
"author": {
"name": "Dongeun Lee",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@rollup/plugin-replace": "^4.0.0",
"mocha": "^10.0.0",
"rollup": "^2.36.2",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"base64-js": "^1.5.1",
"meta-buffer-pack": "^1.3.0"
}
}