Skip to content

Commit

Permalink
Scaffold: Normalize repository
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed Dec 10, 2018
1 parent 68bf895 commit 511943f
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 21 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# http://editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
3 changes: 3 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "@phated/iceddev/es5"
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ node_modules

# Users Environment Variables
.lock-wscript

# Garbage files
.DS_Store
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
sudo: false
language: node_js
node_js:
- '4'
- '0.12'
- '0.10'
before_install:
- 'npm install -g npm' # need those scoped packages
43 changes: 24 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,37 @@
"name": "glogg",
"version": "0.0.0",
"description": "Global logging utility",
"author": "Blaine Bublitz <blaine@iceddev.com> (http://iceddev.com/)",
"contributors": [],
"repository": "undertakerjs/glogg",
"license": "MIT",
"engines": {
"node": ">= 0.10"
},
"main": "index.js",
"files": [
"LICENSE",
"index.js"
],
"scripts": {
"test": "lab -cv --globals store@sparkles"
"test": "lab -cvL --globals store@sparkles"
},
"repository": {
"type": "git",
"url": "https://github.com/phated/glogg"
"dependencies": {
"sparkles": "^1.0.0"
},
"devDependencies": {
"@phated/eslint-config-iceddev": "^0.2.1",
"code": "^1.5.0",
"eslint": "^1.3.1",
"eslint-plugin-mocha": "^0.5.1",
"eslint-plugin-react": "^3.3.2",
"lab": "^5.16.0"
},
"keywords": [
"global",
"log",
"logging",
"logger",
"logging",
"shared"
],
"author": "Blaine Bublitz <blaine@iceddev.com> (http://iceddev.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/phated/glogg/issues"
},
"homepage": "https://github.com/phated/glogg",
"dependencies": {
"sparkles": "^1.0.0"
},
"devDependencies": {
"code": "^1.2.1",
"lab": "^5.1.1"
}
]
}
2 changes: 0 additions & 2 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ var expect = require('code').expect;

var describe = lab.describe;
var it = lab.it;
var before = lab.before;
var after = lab.after;
var beforeEach = lab.beforeEach;
var afterEach = lab.afterEach;

Expand Down

0 comments on commit 511943f

Please # to comment.