-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "simple-random",
"version": "1.0.3",
"description": "A simple flexible javascript library that creates random alpha-numeric strings. Works in both NodeJS and the browser.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha",
"posttest": "./node_modules/.bin/istanbul check-coverage && rm -rf coverage"
},
"repository": {
"type": "git",
"url": "[email protected]:dortzur/simple-random.git"
},
"keywords": [
"random",
"alpha-numeric",
"temporary",
"temp",
"tempfile",
"simple",
"secure",
"security",
"password"
],
"author": "Dor Tzur",
"license": "MIT",
"bugs": {
"url": "https://github.com/dortzur/simple-random/issues"
},
"directories": {
"test": "test"
},
"homepage": "https://github.com/dortzur/simple-random",
"devDependencies": {
"browserify": "^10.2.1",
"chai": "^1.10.0",
"chai-string": "^1.1.0",
"istanbul": "^0.3.5",
"mocha": "^2.0.1",
"sinon": "^1.12.1"
},
"dependencies": {}
}