forked from idesis-gmbh/htmldiff.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.99 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "v-node-htmldiff",
"description": "Diff and markup HTML with <ins> and <del> tags",
"companyname": "idesis GmbH",
"copyright": "©2018, idesis GmbH; ©2012 The Network Inc. and contributors",
"version": "1.0.1",
"identifier": "de.idesis.node-htmldiff",
"keywords": [
"diff",
"html",
"htmldiff",
"ins",
"del"
],
"homepage": "https://github.com/idesis-gmbh/htmldiff.js",
"author": {
"name": "Michael Nitze",
"email": "[email protected]",
"url": "http://www.idesis.de"
},
"contributors": [
"The Network Inc. (http://www.tninetwork.com, https://github.com/tnwinc/htmldiff.js)",
"Inkling (https://www.inkling.com, https://github.com/inkling/htmldiff.js)",
"Ian White ([email protected], https://github.com/ian97531)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nataliesantiago/htmldiff.js"
},
"readme": "README.md",
"bugs": {
"url": "https://github.com/idesis-gmbh/htmldiff.js/issues",
"email": "[email protected]"
},
"private": false,
"license": "MIT",
"main": "js/htmldiff.js",
"bin": {
"htmldiff": "./htmldiff-cli.js"
},
"files": [
"js/htmldiff.js",
"js/htmldiff.d.ts",
"sample/*",
"test/*",
"htmldiff-cli.js"
],
"types": "js/htmldiff.d.ts",
"dependencies": { },
"devDependencies": {
"typescript": "2.7.2",
"tslint": "5.9.1",
"@types/node": "9.6.0",
"chai": "*",
"mocha": "*"
},
"scripts": {
"test": "mocha -R min",
"testsample": "node htmldiff-cli.js sample/before.html sample/after.html - -c myDiffClass -p myPrefix",
"lint": "tslint --exclude ./htmldiff-cli.d.ts --config ./tslint.json ./*.ts ./js/*.ts",
"premake": "npm run lint",
"make": "tsc -p tsconfig.json && node -e \"require('fs').unlinkSync('./htmldiff-cli.d.ts')\""
}
}