Skip to content

Commit

Permalink
0.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
typhonrt committed Mar 14, 2016
1 parent d3bffee commit 02dd7d0
Show file tree
Hide file tree
Showing 12 changed files with 112 additions and 51 deletions.
File renamed without changes.
3 changes: 1 addition & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
coverage/
dist/
docs/
node_modules/
gulpfile.js
node_modules/
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
* NPM: https://www.npmjs.com/package/typhonjs-config-eslint
*/
{
"extends": "./node_modules/typhonjs-config-eslint/es6/server/node/.eslintrc"
"extends": "./node_modules/typhonjs-config-eslint/2.0/es6/server/node/.eslintrc"
}
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
npm-debug.log
token.owner
token.user
coverage
dist
docs
node_modules
coverage/
dist/
docs/
node_modules/
12 changes: 6 additions & 6 deletions .npmscriptrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
/**
* You can provide comments in `npm-scripts.json`
*/
{
"build":
{
Expand All @@ -14,10 +11,13 @@

"test":
{
// Provides a `coverage` handling command that is appended when running on Travis CI.
"travis": { "coverage": "&& cat ./coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js" },
"travis":
{
"report": "cat ./coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js",
"istanbul": { "command": "cover", "options": [ "--report lcovonly" ] }
},

"istanbul": { "command": "cover", "options": [ "--report lcovonly" ] },
"istanbul": { "command": "cover" },
"mocha": { "source": "./test/src", "options": [ "--compilers js:babel-register", "-t 120000 --recursive" ] }
}
}
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ before_script:
- npm install -g gulp
script:
- gulp eslint
- TRAVIS=1 npm run test-coverage
- npm run test-coverage
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## 0.1.0 (2016-03-13)
- Initial stable release.
1 change: 0 additions & 1 deletion gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ import gulpTasks from 'typhonjs-core-gulptasks';
gulpTasks(gulp,
{
rootPath: __dirname,
importTasks: ['esdoc', 'eslint', 'npm'],
srcGlob: ['./src/**/*.js', './test/src/**/*.js']
});
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typhonjs-github-inspect-orgs",
"version": "0.0.9",
"version": "0.1.0",
"homepage": "https://github.com/typhonjs-node-scm/typhonjs-github-inspect-orgs/",
"description": "A NPM module providing compound GitHub queries for many-repo efforts such as TyphonJS and beyond.",
"license": "MPL-2.0",
Expand All @@ -18,14 +18,14 @@
}
],
"dependencies": {
"github": "^0.2.4",
"request": "^2.69.0"
"github": "^0.2.0",
"request": "^2.0.0"
},
"devDependencies": {
"gulp": "^3.9.1",
"typhonjs-config-eslint": "^0.3.0",
"typhonjs-core-gulptasks": "^0.5.0",
"typhonjs-npm-build-test": "^0.0.9"
"gulp": "^3.0.0",
"typhonjs-config-eslint": "^0.4.0",
"typhonjs-core-gulptasks": "^0.6.0",
"typhonjs-npm-build-test": "^0.1.0"
},
"keywords": [
"typhonjs",
Expand All @@ -38,15 +38,15 @@
"scripts": {
"build": "babel-node ./node_modules/typhonjs-npm-scripts-build-babel/scripts/build.js",
"prepublish": "babel-node ./node_modules/typhonjs-npm-scripts-publish/scripts/prepublish.js",
"test": "babel-node ./node_modules/typhonjs-npm-scripts-test-mocha/scripts/test.js",
"test-coverage": "babel-node ./node_modules/typhonjs-npm-scripts-test-mocha/scripts/test-coverage.js"
"test": "babel-node ./node_modules/typhonjs-npm-scripts-test-mocha/scripts/mocha.js",
"test-coverage": "babel-node ./node_modules/typhonjs-npm-scripts-test-mocha/scripts/mocha-istanbul.js"
},
"main": "dist/GitHubInspectOrgs.js",
"files": [
"dist",
"src",
"AUTHORS.md",
"esdoc.json"
".esdocrc"
],
"directories": {},
"bugs": {
Expand Down
Loading

0 comments on commit 02dd7d0

Please sign in to comment.