forked from kpdecker/jsdiff
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 915 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "diff",
"version": "1.3.1",
"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": "istanbul cover node_modules/.bin/_mocha test/*.js"
},
"dependencies": {},
"devDependencies": {
"colors": "~0.6.2",
"istanbul": "^0.3.2",
"mocha": "~1.6",
"should": "~1.2"
},
"optionalDependencies": {},
"files": [
"diff.js"
]
}