Skip to content

Commit

Permalink
change version to publish
Browse files Browse the repository at this point in the history
  • Loading branch information
ZxBing0066 committed Jan 31, 2018
1 parent e2cb4e4 commit e8edb4f
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 30 deletions.
23 changes: 23 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"rules": {
"no-const-assign": "warn",
"no-this-before-super": "warn",
"no-undef": "warn",
"no-unreachable": "warn",
"no-unused-vars": "warn",
"constructor-super": "warn",
"valid-typeof": "warn"
}
}
Empty file added codecov.yml
Empty file.
59 changes: 29 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,31 @@
{
"name": "job-runner",
"version": "0.1.4",
"description": "Run several runner async but sync at all",
"main": "index.js",
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"codecov": "node -v | grep v8.* && istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec && cat ./coverage/lcov.info | ./node_modules/.bin/codecov",
"build": "tsc"
},
"author": "ZxBing0066",
"license": "Apache-2.0",
"directories": {},
"dependencies": {},
"devDependencies": {
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"codecov.io": "^0.1.6",
"mocha": "^3.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZxBing0066/node-job-runner.git"
},
"keywords": [
"node"
],
"bugs": {
"url": "https://github.com/ZxBing0066/node-job-runner/issues"
},
"homepage": "https://github.com/ZxBing0066/node-job-runner#readme"
"name": "job-runner",
"version": "0.1.5",
"description": "Run several runner async but sync at all",
"main": "index.js",
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"codecov":
"node -v | grep v8.* && istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec && cat ./coverage/lcov.info | ./node_modules/.bin/codecov",
"build": "tsc"
},
"author": "ZxBing0066",
"license": "Apache-2.0",
"directories": {},
"dependencies": {},
"devDependencies": {
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"codecov.io": "^0.1.6",
"mocha": "^3.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZxBing0066/node-job-runner.git"
},
"keywords": ["node"],
"bugs": {
"url": "https://github.com/ZxBing0066/node-job-runner/issues"
},
"homepage": "https://github.com/ZxBing0066/node-job-runner#readme"
}

0 comments on commit e8edb4f

Please sign in to comment.