-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.96 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.96 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "com.appalachia.node.html-diff",
"displayName": "Appalachia Interactive HTML-diff",
"version": "1.0.2",
"description": "Generate colorized HTML diffs. Useful for tracking changes to Apache-licensed repositories.",
"keywords": [
"Scripts",
"Tool",
"git",
"diff"
],
"author": {
"name": "Appalachia Interactive"
},
"icon": "media/icon.png",
"publishConfig": {
"registry": "http://localhost:4873/"
},
"repository": {
"type": "git",
"url": "git://github.com/AppalachiaInteractive/com.appalachia.node.html-diff.git"
},
"homepage": "https://github.com/AppalachiaInteractive/com.appalachia.node.html-diff",
"bugs": "https://github.com/AppalachiaInteractive/com.appalachia.node.html-diff/issues",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/AppalachiaInteractive/com.appalachia.node.html-diff/blob/master/LICENSE.md"
},
{
"type": "MIT",
"url": "https://github.com/scottgonzalez/pretty-diff/blob/master/LICENSE.txt"
}
],
"scripts": {
"preversion": "bash ~/com.appalachia/appa/appa.sh package preversion",
"version": "bash ~/com.appalachia/appa/appa.sh package version",
"postversion": "bash ~/com.appalachia/appa/appa.sh package postversion",
"prepack": "bash ~/com.appalachia/appa/appa.sh package prepack",
"postpack": "bash ~/com.appalachia/appa/appa.sh package postpack",
"prepublishOnly": "bash ~/com.appalachia/appa/appa.sh package prepublishOnly",
"publish": "bash ~/com.appalachia/appa/appa.sh package publish",
"postpublish": "bash ~/com.appalachia/appa/appa.sh package postpublish",
"test": "mocha"
},
"bin": {
"git-gist-diff": "./gist-diff.js",
"git-html-diff": "./html-diff.js",
"gist-diff": "./gist-diff.js",
"html-diff": "./html-diff.js"
},
"dependencies": {
"chai": "^4.3.4",
"github-request": "1.2.4",
"mocha": "^8.3.2",
"mocha-sinon": "^2.1.2",
"open": "6.4.0",
"sinon": "^10.0.0"
}
}