Initial commit of code (just a shell)
Showing
- .eslintrc 176 additions, 0 deletions.eslintrc
- .gitignore 1 addition, 0 deletions.gitignore
- .npmignore 9 additions, 0 deletions.npmignore
- .travis.yml 5 additions, 0 deletions.travis.yml
- Gruntfile.js 42 additions, 0 deletionsGruntfile.js
- README.md 36 additions, 1 deletionREADME.md
- lib/index.js 11 additions, 0 deletionslib/index.js
- package.json 37 additions, 0 deletionspackage.json
- src/index.js 9 additions, 0 deletionssrc/index.js
.eslintrc
0 → 100644
.npmignore
0 → 100644
.travis.yml
0 → 100644
Gruntfile.js
0 → 100644
lib/index.js
0 → 100644
package.json
0 → 100644
{ | ||
"name": "tiny-worker", | ||
"version": "0.1.0", | ||
"description": "Tiny WebWorker for Server", | ||
"main": "lib/tiny-worker.js", | ||
"scripts": { | ||
"test": "grunt test" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/avoidwork/tiny-worker.git" | ||
}, | ||
"keywords": [ | ||
"es6", | ||
"unboxed", | ||
"promise", | ||
"deferred", | ||
"defer" | ||
], | ||
"author": "Jason Mulligan <jason.mulligan@avoidwork.com>", | ||
"license": "BSD-3-Clause", | ||
"bugs": { | ||
"url": "https://github.com/avoidwork/tiny-worker/issues" | ||
}, | ||
"homepage": "https://github.com/avoidwork/tiny-worker", | ||
"devDependencies": { | ||
"babel-eslint": "^4.1.0", | ||
"grunt": "^0.4.5", | ||
"grunt-babel": "^5.0.0", | ||
"grunt-cli": "^0.1.13", | ||
"grunt-contrib-watch": "^0.6.1", | ||
"grunt-eslint": "^17.1.0" | ||
}, | ||
"dependencies": { | ||
"tiny-defer": "^1.0.2" | ||
} | ||
} |
src/index.js
0 → 100644
Please register or sign in to comment