-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.18 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
{
"name": "javascript-strong-password-generator",
"version": "1.0.2",
"description": "Strong Password Generator using Fortuna",
"main": "lib/jsspg.js",
"scripts": {
"babel": "babel lib -d build --presets env",
"test": "mocha",
"webpack": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sethblack/javascript-strong-password-generator.git"
},
"keywords": [
"strong",
"password",
"generator"
],
"author": "Seth Black <sblack@sethserver.com> (https://www.sethserver.com)",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/sethblack/javascript-strong-password-generator/issues"
},
"homepage": "https://github.com/sethblack/javascript-strong-password-generator#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^4.0.1",
"uglifyjs-webpack-plugin": "^1.0.0-rc.0",
"webpack": "^3.8.1"
},
"dependencies": {
"javascript-fortuna": "^1.0.8",
"js-sha512": "^0.6.0",
"systeminformation": "^5.6.4"
}
}