-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.88 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
65
66
{
"name": "htmldiff-mildblue",
"description": "Diff and markup HTML with <ins> and <del> tags",
"companyname": "Mild Blue",
"copyright": "©2024, Mild Blue; ©2022, idesis GmbH; ©2012 The Network Inc. and contributors",
"version": "0.9.5",
"identifier": "blue.mild.htmldiff-mildblue",
"keywords": [
"diff",
"html",
"htmldiff",
"ins",
"del"
],
"homepage": "https://github.com/mild-blue/htmldiff.js",
"contributors": [
"idesis GmbH (https://www.idesis.de/, https://github.com/idesis-gmbh/htmldiff.js)",
"The Network Inc. (https://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/mild-blue/htmldiff.js.git"
},
"readme": "README.md",
"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": {
"@types/node": "18.7.11",
"@typescript-eslint/eslint-plugin": "5.34.0",
"@typescript-eslint/parser": "5.34.0",
"chai": "*",
"eslint": "^8.33.0",
"eslint-plugin-jsdoc": "^48.2.3",
"mocha": "*",
"pkg": "5.8.0",
"typescript": "4.7.4"
},
"scripts": {
"test": "mocha -R min",
"testsample": "node htmldiff-cli.js sample/before.html sample/after.html - -c myDiffClass -p myPrefix",
"lint": "eslint -c eslintrc.json --parser-options=project:./tsconfig.json --ext .ts ./",
"premake": "npm run lint",
"make": "tsc -p tsconfig.json && node -e \"require('fs').unlinkSync('./htmldiff-cli.d.ts')\"",
"pack-macos-aarch64": "pkg -t node18-macos-arm64 -C GZip --output ./bin/macos-aarch64/htmldiff-cli htmldiff-cli.js -c ./pkg.json",
"pack-macos-x64": " pkg -t node18-macos-x64 -C GZip --output ./bin/macos-x64/htmldiff-cli htmldiff-cli.js -c ./pkg.json",
"pack-win32-x64": " pkg -t node18-win32-x64 -C GZip --output ./bin/win32-x64/htmldiff-cli htmldiff-cli.js -c ./pkg.json",
"pack-linux-x64": " pkg -t node18-linuxstatic-x64 -C GZip --output ./bin/linux-x64/htmldiff-cli htmldiff-cli.js -c ./pkg.json",
"pack-linux-aarch64": "pkg -t node18-linuxstatic-arm64 -C GZip --output ./bin/linux-aarch64/htmldiff-cli htmldiff-cli.js -c ./pkg.json",
"pack-all": "npm run pack-macos-aarch64 && npm run pack-macos-x64 && npm run pack-win32-x64 && npm run pack-linux-x64 && npm run pack-linux-aarch64"
}
}