From fdba309ad5a3f4a1a1e68a537ed92627f88aabef Mon Sep 17 00:00:00 2001 From: Guillaume Vincent Date: Thu, 10 Dec 2015 21:20:23 +0100 Subject: [PATCH] add gitignore and package.json files --- .gitignore | 1 + package.json | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 package.json diff --git a/.gitignore b/.gitignore index 123ae94..b5f8e29 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ build/Release # Dependency directory # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git node_modules +.idea \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..66b4e3d --- /dev/null +++ b/package.json @@ -0,0 +1,31 @@ +{ + "name": "lesspass", + "version": "1.0.0", + "description": "lesspass is like keepass without the need to persist password", + "main": "lesspass.js", + "scripts": { + "test": "node_modules/mocha/bin/mocha --ui bdd --reporter min --recursive ./tests" + }, + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/guillaumevincent/lesspass.git" + }, + "keywords": [ + "keepass", + "nodejs", + "node" + ], + "author": "Guillaume Vincent", + "license": "MIT", + "bugs": { + "url": "https://github.com/guillaumevincent/lesspass/issues" + }, + "homepage": "https://github.com/guillaumevincent/lesspass#readme", + "dependencies": { + "bootstrap": "^3.3.6", + "mocha": "^2.3.4" + }, + "jshintConfig": { + "esnext": true + } +}