forked from jdx/password-prompt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 831 Bytes
/
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
{
"name": "password-prompt",
"description": "cross-platform masked or hidden prompt",
"version": "1.0.7",
"author": "Jeff Dickey @jdxcode",
"bugs": "https://github.com/jdxcode/password-prompt/issues",
"dependencies": {
"ansi-escapes": "^3.1.0",
"cross-spawn": "^6.0.5"
},
"devDependencies": {
"jsdoc-to-markdown": "^4.0.1",
"standard": "^11.0.1"
},
"files": [
"index.js"
],
"homepage": "https://github.com/jdxcode/password-prompt",
"keywords": [
"cli",
"input",
"password",
"prompt"
],
"license": "WTFPL",
"main": "index.js",
"repository": "https://github.com/jdxcode/password-prompt",
"scripts": {
"docs": "jsdoc2md -t README.hbs index.js > README.md; echo",
"version": "standard --fix && git add index.js && npm run docs && git add README.md"
}
}