Skip to content

Commit

Permalink
Scaffold: Normalize repository
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed May 14, 2018
1 parent 5853e58 commit 0f7f98d
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 16 deletions.
25 changes: 25 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"indent": 2,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"quotmark": "single",
"undef": true,
"strict": true,
"maxparams": 4,
"maxdepth": 3,
"maxstatements": 50,
"maxlen": 100,

"eqnull": true,
"globalstrict": true,

"node": true
}
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
language: node_js
node_js:
- '0.10'
script:
- npm test
- npm run lint
37 changes: 21 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,35 @@
{
"name": "sparkles",
"version": "1.0.0",
"version": "0.0.0",
"description": "Namespaced global event emitter",
"author": "Blaine Bublitz <[email protected]> (http:https://iceddev.com/)",
"contributors": [],
"repository": "phated/sparkles",
"license": "MIT",
"engines": {
"node": ">= 0.10"
},
"main": "index.js",
"files": [
"index.js",
"LICENSE"
],
"scripts": {
"test": "lab -cv"
"test": "lab -cv",
"lint": "jshint test index.js --reporter node_modules/jshint-stylish/stylish.js --exclude node_modules"
},
"repository": {
"type": "git",
"url": "https://github.com/phated/sparkles"
"dependencies": {},
"devDependencies": {
"code": "^1.2.1",
"jshint": "^2.5.10",
"jshint-stylish": "^1.0.0",
"lab": "^5.1.0"
},
"keywords": [
"global",
"ee",
"events",
"emitter",
"namespaced"
],
"author": "Blaine Bublitz <[email protected]> (http:https://iceddev.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/phated/sparkles/issues"
},
"homepage": "https://github.com/phated/sparkles",
"dependencies": {
"code": "^1.2.1",
"lab": "^5.1.0"
}
]
}

0 comments on commit 0f7f98d

Please sign in to comment.