-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 769 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 769 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
{
"name": "alea",
"version": "1.0.1",
"description": "Implementation of the Alea PRNG by Johannes Baagøe",
"main": "alea.js",
"scripts": {
"test": "node test"
},
"keywords": ["badass", "pseudo", "random", "number","generator"],
"devDependencies":{
"tape": "~0.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/coverslide/node-alea"
},
"author": {
"name": "Richard Hoffman",
"email": "coverslide@gmail.com",
"url": "http://coverslide.me"
},
"testling": {
"files": "test.js",
"browsers": {
"ie": [ 6, 7, 8, 9 ],
"ff": [ 3.6, 4, 17, "nightly" ],
"chrome": [ 22, 23, "canary" ],
"opera": [ 10, 11, 12, "next" ],
"safari": [ 5.1 ]
}
},
"license": "MIT"
}