-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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": "strict-password-generator",
"version": "1.1.1",
"description": "Generate a random password with strict requirements",
"main": "dist/index.js",
"scripts": {
"test": "./node_modules/.bin/babel-node ./node_modules/.bin/_mocha --timeout 60000 -- ./test/* ",
"precompile": "babel -d ./dist ./index.js && babel -d ./dist/src ./src",
"prepare": "npm run precompile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/badavis/strict-password-generator.git"
},
"keywords": [
"password",
"generator",
"crypto",
"strict",
"requirements"
],
"author": "Ben Davis <[email protected]> (https://github.com/badavis)",
"license": "MIT",
"bugs": {
"url": "https://github.com/badavis/strict-password-generator/issues"
},
"homepage": "https://github.com/badavis/strict-password-generator#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.14.0",
"chai": "^4.2.0",
"mocha": "^5.2.0"
},
"babel": {
"presets": [
"es2015"
]
},
"dependencies": {
"debug": "^4.1.0"
}
}