-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.25 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
{
"name": "drbg.js",
"version": "1.0.1",
"description": "Deterministic Random Bit Generators",
"keywords": [
"drbg",
"nist sp 800-90a",
"ctrdrbg",
"hashdrbg",
"hmacdrbg"
],
"bugs": {
"url": "https://github.com/cryptocoinjs/drbg.js/issues"
},
"license": "MIT",
"author": "Kirill Fomichev <[email protected]> (https://github.com/fanatid)",
"files": [
"lib",
"hash.js",
"hmac.js",
"index.js"
],
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/cryptocoinjs/drbg.js.git"
},
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "npm run unit:node && npm run unit:browser",
"unit:node": "tap --cov test/**/*.js",
"unit:browser": "karma start karma.conf.js"
},
"dependencies": {
"browserify-aes": "^1.0.6",
"create-hash": "^1.1.2",
"create-hmac": "^1.1.4"
},
"devDependencies": {
"browserify": "^12.0.0",
"karma": "^0.13.19",
"karma-browserify": "^5.0.1",
"karma-chrome-launcher": "^0.2.2",
"karma-detect-browsers": "^2.0.2",
"karma-firefox-launcher": "^0.1.7",
"karma-tap": "^1.0.3",
"tap": "^5.4.4",
"standard": "^6.0.4"
},
"engines": {
"node": ">=0.10"
}
}