-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update dependencies. * Update project description. * Update package.json. Add engines field. Switch order. * Add library description. * Bump version.
- Loading branch information
Showing
3 changed files
with
43 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
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
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,7 +1,25 @@ | ||
{ | ||
"name": "mpe", | ||
"version": "0.1.7", | ||
"description": "A JavaScript toolkit for MPE devices.", | ||
"version": "0.1.8", | ||
"description": "Next generation MIDI for the web.", | ||
"keywords": [ | ||
"mpe", | ||
"midi", | ||
"music", | ||
"keyboard", | ||
"javascript", | ||
"js" | ||
], | ||
"author": "Oscar Dub <[email protected]>", | ||
"homepage": "http://mpe.js.org", | ||
"license": "UNLICENSED", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/WeAreROLI/mpejs" | ||
}, | ||
"engines": { | ||
"node": ">=4.0.0" | ||
}, | ||
"main": "lib/index.js", | ||
"scripts": { | ||
"build": "npm run clean && npm run compile", | ||
|
@@ -21,53 +39,37 @@ | |
"test": "mocha --compilers js:babel-core/register test/**/*.test.js", | ||
"serve": "python -m SimpleHTTPServer 8000" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/WeAreROLI/mpejs" | ||
}, | ||
"keywords": [ | ||
"mpe", | ||
"midi", | ||
"music", | ||
"keyboard", | ||
"javascript", | ||
"js" | ||
], | ||
"author": "Oscar Dub <[email protected]>", | ||
"license": "UNLICENSED", | ||
"dependencies": { | ||
"redux": "^3.4.0" | ||
"redux": "^3.5.2" | ||
}, | ||
"devDependencies": { | ||
"babel": "^6.5.2", | ||
"babel-cli": "^6.7.5", | ||
"babel-core": "^6.7.7", | ||
"babel-cli": "^6.10.1", | ||
"babel-core": "^6.9.1", | ||
"babel-loader": "^6.2.4", | ||
"babel-preset-es2015": "^6.6.0", | ||
"babel-preset-es2015": "^6.9.0", | ||
"chai": "^3.5.0", | ||
"concat-stream": "^1.5.1", | ||
"doctrine": "^1.2.2", | ||
"documentation": "^4.0.0-beta5", | ||
"documentation-theme-utils": "^3.0.0", | ||
"eslint": "^2.9.0", | ||
"eslint": "^2.13.1", | ||
"git-directory-deploy": "^1.5.0", | ||
"highlight.js": "^9.4.0", | ||
"html-webpack-plugin": "^2.15.0", | ||
"html-webpack-plugin": "^2.21.0", | ||
"jsdoc": "^3.4.0", | ||
"lodash": "^4.13.1", | ||
"mocha": "^2.4.5", | ||
"mocha": "^2.5.3", | ||
"remark": "^5.0.1", | ||
"remark-html": "^3.0.1", | ||
"remark-html": "^4.0.0", | ||
"sinon": "^1.17.4", | ||
"sinon-chai": "^2.8.0", | ||
"unist-util-visit": "^1.1.0", | ||
"vinyl": "^1.1.1", | ||
"vinyl-fs": "^2.4.3", | ||
"webpack": "^1.13.0" | ||
"webpack": "^1.13.1" | ||
}, | ||
"babel": { | ||
"presets": [ | ||
"es2015" | ||
] | ||
"presets": ["es2015"] | ||
} | ||
} |