-
Notifications
You must be signed in to change notification settings - Fork 7
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
Showing
5 changed files
with
39 additions
and
10 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
*~ | ||
typings | ||
node_modules | ||
lib | ||
lib | ||
coverage/ |
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,7 @@ | ||
language: node_js | ||
node_js: | ||
- "6" | ||
- "6.1" | ||
|
||
after_success: | ||
- "npm run codecov" |
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
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 |
---|---|---|
|
@@ -5,13 +5,13 @@ | |
"main": "lib/index", | ||
"typings": "lib/index", | ||
"scripts": { | ||
"prepublish": "cp -r lib/* .", | ||
"postinstall": "./node_modules/.bin/typings install", | ||
"build": "./node_modules/.bin/tsc", | ||
"test": "./node_modules/.bin/ts-node node_modules/.bin/_mocha test/**/*.ts", | ||
"release-major": "xyz --repo [email protected]:paldepind/jabz.git --increment major", | ||
"release-minor": "xyz --repo [email protected]:paldepind/jabz.git --increment minor", | ||
"release-patch": "xyz --repo [email protected]:paldepind/jabz.git --increment patch" | ||
"postinstall": "typings install", | ||
"build": "tsc", | ||
"test": "nyc ts-node node_modules/.bin/_mocha test/**/*.ts && nyc report", | ||
"codecov": "codecov -f coverage/coverage-final.json", | ||
"release-major": "xyz --repo [email protected]:funkia/jabz.git --increment major", | ||
"release-minor": "xyz --repo [email protected]:funkia/jabz.git --increment minor", | ||
"release-patch": "xyz --repo [email protected]:funkia/jabz.git --increment patch" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -28,10 +28,28 @@ | |
"homepage": "https://github.com/paldepind/jabz#readme", | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"codecov": "^1.0.1", | ||
"mocha": "^2.5.3", | ||
"nyc": "^8.3.0", | ||
"ts-node": "^0.8.0", | ||
"typescript": "^2.0.0", | ||
"typescript": "^2.1.0-dev.20160928", | ||
"typings": "^1.0.4", | ||
"xyz": "0.5.x" | ||
}, | ||
"nyc": { | ||
"include": [ | ||
"src/*.ts", | ||
"src/**/*.ts" | ||
], | ||
"exclude": [ | ||
"typings" | ||
], | ||
"extension": [ | ||
".ts" | ||
], | ||
"reporter": [ | ||
"json", | ||
"html" | ||
] | ||
} | ||
} |
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