-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 838 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 838 Bytes
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
{
"name": "tiny-enc",
"version": "1.0.2",
"description": "Tiny text encryption for modern browsers",
"scripts": {
"build": "run-s minify build-module",
"minify": "uglifyjs --compress --mangle -o tiny-enc.min.js tiny-enc.js",
"build-module": "node build-es6-module"
},
"main": "tiny-enc.module.min.js",
"unpkg": "tiny-enc.module.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Rundik/tiny-enc.git"
},
"author": "Ivan Alexandrov",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rundik/tiny-enc/issues"
},
"keywords": [
"aes",
"encryption",
"decryption",
"text encryption",
"SubtleCrypto"
],
"homepage": "https://github.com/Rundik/tiny-enc#readme",
"devDependencies": {
"npm-run-all": "^4.1.5",
"uglify-js": "^3.13.4"
}
}