-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "unicode-passgen",
"version": "1.1.0",
"description": "A JavaScript library for generating random passwords from the Unicode BMP character set.",
"main": "index.js",
"directories": {
"example": "examples",
"test": "test"
},
"dependencies": {
"regenerate": "^1.3.3"
},
"devDependencies": {
"browserify": "^16.1.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^3.0.0",
"istanbul": "^0.4.5",
"jshint": "^2.9.5",
"mocha": "^5.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.10.0"
},
"scripts": {
"lint": "jshint index.js",
"test": "mocha",
"build": "gulp build",
"coveralls": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*"
},
"repository": {
"type": "git",
"url": "git+https://tysonphillips@github.com/phillipsdata/unicode-passgen.git"
},
"keywords": [
"unicode passgen",
"unicode password",
"unicode password generator",
"password generator",
"generate password",
"random string",
"random generator",
"password",
"generator",
"unicode",
"utf8",
"browser"
],
"author": "Phillips Data, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/phillipsdata/unicode-passgen/issues"
},
"homepage": "https://github.com/phillipsdata/unicode-passgen#readme"
}