-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.77 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
{
"name": "native-crypto",
"version": "1.8.1",
"description": "",
"main": "lib/index.js",
"browser": {
"./lib/decrypt.js": "./browser/decrypt.js",
"./lib/encrypt.js": "./browser/encrypt.js",
"./lib/generate.js": "./browser/generate.js",
"./lib/hash.js": "./browser/hash.js",
"./lib/hmac.js": "./browser/hmac.js",
"./lib/pbkdf2.js": "./browser/pbkdf2.js",
"./lib/rsa.js": "./browser/rsa.js",
"./lib/signature.js": "./browser/signature.js",
"./lib/ecdh.js": "./browser/ecdh.js"
},
"scripts": {
"test": "node test/index.js",
"browser": "zuul --no-coverage --local 8080 -- test/index.js",
"build": "rimraf browser && mkdirp browser && node ./bin.js"
},
"author": "Calvin Metcalf <calvin.metcalf@gmail.com>",
"license": "MIT",
"dependencies": {
"asn1.js": "^4.5.0",
"bn.js": "^4.10.3",
"browserify-aes": "^1.0.5",
"browserify-sign": "^4.0.0",
"buffer-equal-constant-time": "^1.0.1",
"create-ecdh": "^4.0.0",
"create-hash": "^1.1.2",
"create-hmac": "^1.1.4",
"debug": "^2.2.0",
"ecdsa-sig-formatter": "^1.0.7",
"elliptic": "^6.0.1",
"jwk-to-pem": "^1.2.2",
"miller-rabin": "^4.0.0",
"minimalistic-assert": "^1.0.0",
"pbkdf2": "^3.0.4",
"pemstrip": "0.0.1",
"public-encrypt": "^4.0.0",
"randombytes": "^2.0.2"
},
"devDependencies": {
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"inline-process-browser": "^1.0.0",
"mkdirp": "^0.5.1",
"rimraf": "^2.5.4",
"tape": "^4.2.1",
"unreachable-branch-transform": "^0.5.0",
"zuul": "^3.6.0"
},
"repository": {
"type": "git",
"url": "git@github.com:calvinmetcalf/native-crypto.git"
},
"optionalDependencies": {
"raw-ecdsa": "^1.1.1",
"rsa-keygen": "^1.0.5"
}
}