forked from MiliTing/jcrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.65 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "jcrypto",
"description": "JavaScript white-box cryptography tools.",
"version": "0.2.1-dev",
"homepage": "https://github.com/tsu-iscd/jcrypto",
"author": "Tomsk State University Information Security and Cryptography Department",
"maintainers": [
{
"name": "Denis Kolegov",
"email": "[email protected]"
},
{
"name": "Nikita Oleksov",
"email": "[email protected]"
},
{
"name": "Oleg Broslavsky",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/tsu-iscd/jcrypto.git"
},
"license": "Apache-2.0",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"lint": "eslint src/*.js test/**/*.js",
"test": "mkdirp ./tmp && nodeunit test/*.js"
},
"pre-commit": [
"lint"
],
"devDependencies": {
"eslint": "^3.7.1",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-eslint": "^19.0.0",
"grunt-jsvalidate": "^0.2.2",
"grunt-mkdir": "^1.0.0",
"mkdirp": "^0.5.1",
"nodeunit": "^0.9.1",
"pre-commit": "^1.1.3",
"uglify-js": "^2.7.4"
},
"keywords": [
"white-box cryptography",
"obfuscation",
"cryptography",
"encryption",
"hashing",
"AES128-CTR",
"HMAC-SHA256"
],
"main": "./src/index.js",
"bin": {
"jcrypto": "./bin/jcrypto.js"
},
"dependencies": {
"escodegen": "^1.8.0",
"esprima": "^2.7.2",
"minimist": "^1.2.0",
"esformatter": "^0.9.6"
},
"bugs": {
"url": "https://github.com/tsu-iscd/jcrypto/issues"
},
"directories": {
"src": "src"
}
}