mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
modified: ChangeLog modified: lib/client/edit.js lib/util/ new file: lib/util/jsdiff/LICENSE new file: lib/util/jsdiff/README.md new file: lib/util/jsdiff/diff.js new file: lib/util/jsdiff/package.json
39 lines
817 B
JSON
39 lines
817 B
JSON
{
|
|
"name": "diff",
|
|
"version": "1.0.5",
|
|
"description": "A javascript text diff implementation.",
|
|
"keywords": [
|
|
"diff",
|
|
"javascript"
|
|
],
|
|
"maintainers": [
|
|
"Kevin Decker <kpdecker@gmail.com> (http://incaseofstairs.com)"
|
|
],
|
|
"bugs": {
|
|
"email": "kpdecker@gmail.com",
|
|
"url": "http://github.com/kpdecker/jsdiff/issues"
|
|
},
|
|
"licenses": [
|
|
{
|
|
"type": "BSD",
|
|
"url": "http://github.com/kpdecker/jsdiff/blob/master/LICENSE"
|
|
}
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/kpdecker/jsdiff.git"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.3.1"
|
|
},
|
|
"main": "./diff",
|
|
"scripts": {
|
|
"test": "node_modules/.bin/mocha test/*.js"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"mocha": "~1.6",
|
|
"should": "~1.2"
|
|
},
|
|
"optionalDependencies": {}
|
|
}
|