-
Notifications
You must be signed in to change notification settings - Fork 0
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
e2cb4e4
commit e8edb4f
Showing
3 changed files
with
52 additions
and
30 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,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.
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,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" | ||
} |