浏览代码

add gitignore and package.json files

pull/1/head
Guillaume Vincent 9 年前
父节点
当前提交
fdba309ad5
共有 2 个文件被更改,包括 32 次插入0 次删除
  1. +1
    -0
      .gitignore
  2. +31
    -0
      package.json

+ 1
- 0
.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

+ 31
- 0
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
}
}

正在加载...
取消
保存