mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-26 01:18:15 +00:00
feature(edit) add diff
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
This commit is contained in:
parent
0011e22cfe
commit
08a34b846a
6 changed files with 538 additions and 2 deletions
39
lib/util/jsdiff/package.json
Normal file
39
lib/util/jsdiff/package.json
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"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": {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue