1 | {
|
2 | "name": "brorand",
|
3 | "version": "1.1.0",
|
4 | "description": "Random number generator for browsers and node.js",
|
5 | "main": "index.js",
|
6 | "scripts": {
|
7 | "test": "mocha --reporter=spec test/**/*-test.js"
|
8 | },
|
9 | "repository": {
|
10 | "type": "git",
|
11 | "url": "git@github.com:indutny/brorand"
|
12 | },
|
13 | "keywords": [
|
14 | "Random",
|
15 | "RNG",
|
16 | "browser",
|
17 | "crypto"
|
18 | ],
|
19 | "author": "Fedor Indutny <fedor@indutny.com>",
|
20 | "license": "MIT",
|
21 | "bugs": {
|
22 | "url": "https://github.com/indutny/brorand/issues"
|
23 | },
|
24 | "homepage": "https://github.com/indutny/brorand",
|
25 | "devDependencies": {
|
26 | "mocha": "^2.0.1"
|
27 | },
|
28 | "browser": {
|
29 | "crypto": false
|
30 | }
|
31 | }
|