wishthis/node_modules/diff/package.json

44 lines
873 B
JSON
Raw Normal View History

2022-01-21 08:28:41 +00:00
{
2022-04-08 10:55:35 +00:00
"name": "diff",
"version": "1.0.8",
2022-01-21 08:28:41 +00:00
"description": "A javascript text diff implementation.",
"keywords": [
"diff",
"javascript"
],
2022-04-08 10:55:35 +00:00
"maintainers": [
"Kevin Decker <kpdecker@gmail.com> (http://incaseofstairs.com)"
],
"bugs": {
"email": "kpdecker@gmail.com",
"url": "http://github.com/kpdecker/jsdiff/issues"
},
2022-01-21 08:28:41 +00:00
"licenses": [
{
"type": "BSD",
"url": "http://github.com/kpdecker/jsdiff/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/kpdecker/jsdiff.git"
},
2022-04-08 10:55:35 +00:00
"engines": {
"node": ">=0.3.1"
},
"main": "./diff",
2022-01-21 08:28:41 +00:00
"scripts": {
2022-04-08 10:55:35 +00:00
"test": "node_modules/.bin/mocha test/*.js"
2022-01-21 08:28:41 +00:00
},
2022-04-08 10:55:35 +00:00
"dependencies": {},
"devDependencies": {
"mocha": "~1.6",
"should": "~1.2",
"colors": "~0.6.2"
},
"optionalDependencies": {},
"files": [
"diff.js"
]
2022-01-21 08:28:41 +00:00
}