This repository has been archived by the owner on Dec 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dbbf006
commit 6817f3a
Showing
5 changed files
with
1,958 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# EditorConfig is awesome: http://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
|
||
|
||
# Matches multiple files with brace expansion notation | ||
# Set default charset | ||
[*.js] | ||
charset = utf-8 | ||
indent_style = tab | ||
indent_size = tab | ||
tab_width = 2 | ||
trim_trailing_whitespace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
cache: | ||
yarn: true | ||
directories: | ||
- node_modules | ||
language: node_js | ||
node_js: | ||
- "node" | ||
- "7" | ||
- "6" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
install: | ||
yarn install | ||
|
||
lint: | ||
./node_modules/.bin/xo 'src/**/*.js' | ||
|
||
test: test-spec test-component | ||
|
||
test-spec: | ||
./node_modules/.bin/mocha -r tests/.bootstrap.js 'tests/spec/**/*.spec.js' | ||
|
||
test-component: | ||
./node_modules/.bin/mocha -r tests/.bootstrap.js 'tests/component/test.js' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"name": "director.js", | ||
"version": "1.0.0", | ||
"description": "A command bus implementation for node.js", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "make test" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/michael-donat/director.js.git" | ||
}, | ||
"keywords": [ | ||
"command bus", | ||
"cqrs" | ||
], | ||
"author": "Michael Donat <[email protected]>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/michael-donat/director.js/issues" | ||
}, | ||
"homepage": "https://github.com/michael-donat/director.js#readme", | ||
"devDependencies": { | ||
"chai": "^3.5.0", | ||
"mocha": "^3.2.0", | ||
"xo": "^0.17.1" | ||
} | ||
} |
Oops, something went wrong.