-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.01 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
{
"private": true,
"name": "html-vault",
"description": "Store a secret securely in a standalone HTML file.",
"version": "0.1.0",
"keywords": [
"secret",
"encrypt",
"decrypt",
"sodium",
"html",
"share"
],
"author": "Jannis R <[email protected]>",
"homepage": "https://derhuerst.github.io/html-vault/",
"repository": "derhuerst/html-vault",
"bugs": "https://github.com/derhuerst/todo-name/issues",
"license": "ISC",
"engines": {
"node": ">=14"
},
"dependencies": {
"file-saver": "^2.0.1",
"self-decrypting-html-page": "^3.0.0",
"sodium-encryption": "^1.2.3"
},
"devDependencies": {
"@babel/core": "^7.15.4",
"@babel/preset-env": "^7.15.4",
"babel-preset-minify": "^0.5.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"envify": "^4.1.0",
"uglifyify": "^5.0.1"
},
"scripts": {
"dev": "browserify src/index.js >dist/bundle.js",
"build": "env NODE_ENV=production browserify -g [ babelify --presets [@babel/preset-env] ] -g envify -g uglifyify src/index.js >dist/bundle.js"
}
}