forked from chriszarate/supergenpass-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.19 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
{
"name": "bcryptgenpass-lib",
"version": "0.1.1",
"description": "Generate passwords for SuperGenPass with bCrypt and special characters",
"main": "bcryptgenpass-lib.js",
"scripts": {
"test": "tape tests/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/cmcnulty/bcryptgenpass-lib.git"
},
"author": "Charles McNulty",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/cmcnulty/bcryptgenpass-lib/issues"
},
"homepage": "https://github.com/cmcnulty/bcryptgenpass-lib",
"devDependencies": {
"browserify": "^5.9.1",
"gulp": "^3.6.2",
"gulp-clean": "^0.3.1",
"gulp-jshint": "^1.5.5",
"gulp-streamify": "0.0.5",
"gulp-uglify": "^0.3.1",
"nodeunit": "^0.9.0",
"vinyl-source-stream": "^0.1.1",
"tape": "~2.13.4"
},
"dependencies": {
"crypto-js": "^3.1.2",
"bcryptjs": "^2.0.2"
},
"testling": {
"files": "tests/*.js",
"browsers": [
"ie/8..latest",
"firefox/17..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest"
]
}
}