Skip to content

Commit

Permalink
❄️ basic setup #3
Browse files Browse the repository at this point in the history
  • Loading branch information
jrans committed Oct 25, 2016
1 parent adb9f23 commit b51e2db
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
root = true

[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
coverage
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,9 @@ jspm_packages

# Optional REPL history
.node_repl_history

# goodparts symlink
.eslintrc.js

# environment variables
*.env
33 changes: 33 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "abase-db",
"version": "1.0.0",
"description": "A little experiment in defining models in Joi and creating PostgreSQL Tables",
"main": "lib/index.js",
"devDependencies": {
"goodparts": "^1.1.0",
"istanbul": "^0.4.5",
"pre-commit": "^1.1.3",
"tape": "^4.6.2"
},
"dependencies": {
"env2": "^2.1.1"
},
"scripts": {
"test": "tape ./test/**/*.test.js",
"lint": "node_modules/.bin/goodparts .",
"lint:fix": "node_modules/.bin/goodparts . --fix",
"cover": "node_modules/.bin/istanbul cover node_modules/.bin/tape ./test/*.test.js",
"check-coverage": "node_modules/.bin/istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"start": "node lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwyl/joi-postgresql.git"
},
"author": "@eliascodes && @jrans",
"license": "ISC",
"bugs": {
"url": "https://github.com/dwyl/joi-postgresql/issues"
},
"homepage": "https://github.com/dwyl/joi-postgresql#readme"
}

0 comments on commit b51e2db

Please sign in to comment.