소스 검색

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
}
}

불러오는 중...
취소
저장