-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
35 lines (35 loc) · 851 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
{
"name": "tea",
"version": "0.0.1",
"description": "Block TEA (xxtea) Tiny Encryption Algorithm implementation for Node",
"engines": {
"node": ">=0.8.0"
},
"author": {
"name": "Christiaan Westerbeek",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/devotis/node-tea.git"
},
"main": "./index.js",
"keywords": [
"encryption",
"decryption",
"tea",
"xxtea"
],
"licenses": [
{
"type": "Creative Commons Attribution 3.0 License",
"url": "http://creativecommons.org/licenses/by/3.0/"
}
],
"readme": "Block TEA (xxtea) Tiny Encryption Algorithm implementation for Node",
"readmeFilename": "Readme.md",
"bugs": {
"url": "https://github.com/devotis/node-tea/issues"
},
"homepage": "https://github.com/devotis/node-tea"
}