forked from deadusr/html-diff-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.65 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
{
"name": "html-diff-ts",
"version": "1.4.2",
"description": "JavaScript port of [HtmlDiff.NET](https://github.com/Rohland/htmldiff.net) which is itself a C# port of the Ruby implementation, [HtmlDiff](https://github.com/myobie/htmldiff/).",
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:web",
"build:esm": "tsc -p ./configs/tsconfig.esm.json && mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./configs/tsconfig.cjs.json",
"build:web": "webpack",
"prepack": "npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deadusr/htmldiff-js.git"
},
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/deadusr/htmldiff-js/issues"
},
"homepage": "https://github.com/deadusr/htmldiff-js#readme",
"devDependencies": {
"@types/jest": "^29.2.3",
"install": "^0.13.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"copy-webpack-plugin": "^12.0.2",
"terser-webpack-plugin": "^5.3.10"
}
}