-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "@hugsmidjan/htmldiff-js",
"version": "1.3.0",
"description": "JavaScript port of HtmlDiff.Net which is itself a C# port of HtmlDiff. Modified for reglugerd.is",
"main": "./dist/htmldiff.min.js",
"author": "Jordan Hitch",
"license": "ISC",
"contributors": [
"Jordan Hitch",
"Valur ([email protected])"
],
"engines": {
"node": ">=14.15"
},
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode production --watch",
"publishdist": "npm run build && npm publish",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hugsmidjan-is/htmldiff-js.git"
},
"keywords": [
"HtmlDiff",
"Html",
"Diff",
"Diff Algorithm",
"Diff Structured File"
],
"homepage": "https://github.com/hugsmidjan-is/htmldiff-js#readme",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"babel-jest": "^27.4.2",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.19.3",
"jest": "^27.4.3",
"regenerator-runtime": "^0.13.9",
"unminified-webpack-plugin": "^3.0.0",
"webpack": "^4.46.0",
"webpack-cli": "^4.9.1"
}
}