-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
45 lines (45 loc) · 930 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
36
37
38
39
40
41
42
43
44
45
{
"name": "secure-random",
"version": "1.1.2",
"description": "Normalize the creation of cryptographically strong random values.",
"main": "./lib/secure-random.js",
"repository": {
"type": "git",
"url": "https://github.com/jprichardson/secure-random"
},
"keywords": [
"crypto",
"cryptography",
"secure",
"random",
"rand",
"generator",
"number"
],
"author": "JP Richardson",
"license": "MIT",
"devDependencies": {
"mocha": "^1.20.0",
"terst": "^0.1.0",
"mochify": "^0.9.3"
},
"dependencies": {},
"browser": {
"crypto": false
},
"scripts": {
"test": "mocha --ui bdd",
"unit": "./node_modules/.bin/mocha"
},
"testling": {
"files": "test/*.js",
"browsers": [
"firefox/latest",
"chrome/latest",
"safari/6..latest",
"ie/9..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
}
}