Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kimmobrunfeldt committed May 25, 2015
1 parent 75080db commit d87b008
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 43 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Concurrently

**Version: 0.0.5** ([*previous stable*](https://github.com/kimmobrunfeldt/concurrently/tree/0.0.4))
**Version: 0.1.0** ([*previous stable*](https://github.com/kimmobrunfeldt/concurrently/tree/0.0.5))

Run multiple commands concurrently.
Like `npm run watch-js & npm run watch-less` but better.
Expand Down
84 changes: 42 additions & 42 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
{
"name": "concurrently",
"version": "0.0.5-dev",
"description": "Run commands concurrently",
"main": "src/main.js",
"bin": {
"concurrent": "./src/main.js"
},
"repository": {
"type": "git",
"url": "https://github.com/kimmobrunfeldt/concurrently.git"
},
"keywords": [
"bash",
"concurrent",
"parallel",
"concurrently",
"command",
"sh"
],
"author": "Kimmo Brunfeldt",
"license": "MIT",
"bugs": {
"url": "https://github.com/kimmobrunfeldt/concurrently/issues"
},
"homepage": "https://github.com/kimmobrunfeldt/concurrently",
"dependencies": {
"bluebird": "2.9.6",
"chalk": "0.5.1",
"commander": "2.6.0",
"cross-spawn": "^0.2.9",
"lodash": "3.1.0",
"rx": "2.3.24"
},
"devDependencies": {
"chai": "^1.10.0",
"mocha": "^2.1.0",
"mustache": "^1.0.0",
"semver": "^4.2.0",
"shelljs": "^0.3.0",
"string": "^3.0.0"
}
}
"name": "concurrently",
"version": "0.1.0",
"description": "Run commands concurrently",
"main": "src/main.js",
"bin": {
"concurrent": "./src/main.js"
},
"repository": {
"type": "git",
"url": "https://github.com/kimmobrunfeldt/concurrently.git"
},
"keywords": [
"bash",
"concurrent",
"parallel",
"concurrently",
"command",
"sh"
],
"author": "Kimmo Brunfeldt",
"license": "MIT",
"bugs": {
"url": "https://github.com/kimmobrunfeldt/concurrently/issues"
},
"homepage": "https://github.com/kimmobrunfeldt/concurrently",
"dependencies": {
"bluebird": "2.9.6",
"chalk": "0.5.1",
"commander": "2.6.0",
"cross-spawn": "^0.2.9",
"lodash": "3.1.0",
"rx": "2.3.24"
},
"devDependencies": {
"chai": "^1.10.0",
"mocha": "^2.1.0",
"mustache": "^1.0.0",
"semver": "^4.2.0",
"shelljs": "^0.3.0",
"string": "^3.0.0"
}
}

0 comments on commit d87b008

Please sign in to comment.