├── .gitignore ├── .gitmodules ├── .npmignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── lib └── index.js ├── package.json ├── test ├── basic.test.js └── getpass.js └── tools ├── bashstyle ├── jsl.node.conf ├── jsstyle.conf └── mk ├── Makefile.defs ├── Makefile.deps ├── Makefile.node.defs ├── Makefile.node.targ ├── Makefile.node_deps.defs ├── Makefile.node_deps.targ ├── Makefile.node_prebuilt.defs ├── Makefile.node_prebuilt.targ └── Makefile.targ /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/package.json -------------------------------------------------------------------------------- /test/basic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/test/basic.test.js -------------------------------------------------------------------------------- /test/getpass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/test/getpass.js -------------------------------------------------------------------------------- /tools/bashstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/tools/bashstyle -------------------------------------------------------------------------------- /tools/jsl.node.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/tools/jsl.node.conf -------------------------------------------------------------------------------- /tools/jsstyle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/tools/jsstyle.conf -------------------------------------------------------------------------------- /tools/mk/Makefile.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/tools/mk/Makefile.defs -------------------------------------------------------------------------------- /tools/mk/Makefile.deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/tools/mk/Makefile.deps -------------------------------------------------------------------------------- /tools/mk/Makefile.node.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/tools/mk/Makefile.node.defs -------------------------------------------------------------------------------- /tools/mk/Makefile.node.targ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/tools/mk/Makefile.node.targ -------------------------------------------------------------------------------- /tools/mk/Makefile.node_deps.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/tools/mk/Makefile.node_deps.defs -------------------------------------------------------------------------------- /tools/mk/Makefile.node_deps.targ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/tools/mk/Makefile.node_deps.targ -------------------------------------------------------------------------------- /tools/mk/Makefile.node_prebuilt.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/tools/mk/Makefile.node_prebuilt.defs -------------------------------------------------------------------------------- /tools/mk/Makefile.node_prebuilt.targ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/tools/mk/Makefile.node_prebuilt.targ -------------------------------------------------------------------------------- /tools/mk/Makefile.targ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arekinath/node-getpass/HEAD/tools/mk/Makefile.targ --------------------------------------------------------------------------------