forked from kenany/get-random-values
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 704 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 704 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
34
{
"name": "get-random-values",
"version": "1.2.0",
"description": "`window.crypto.getRandomValues` with fallback to Node.js crypto",
"keywords": [
"crypto"
],
"repository": "KenanY/get-random-values",
"license": "MIT",
"author": "Kenan Yildirim <kenan@kenany.me> (http://kenany.me/)",
"main": "index.js",
"files": [
"index.js",
"LICENSE.txt"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "tape test/*.js"
},
"dependencies": {
"global": "^4.2.1"
},
"devDependencies": {
"is-browser": "^2.0.1",
"lodash.foreach": "^4.4.1",
"lodash.isfunction": "^3.0.6",
"tape": "^4.4.0"
},
"browser": {
"crypto": false
}
}