forked from nataliesantiago/htmldiff.js
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.24 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": "htmldiff",
"description": "Diff and markup HTML with <ins> and <del> tags",
"version": "2.0.0",
"homepage": "https://github.com/mblink/htmldiff.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mblink/htmldiff.js"
},
"readme": "README.md",
"bugs": {
"url": "https://github.com/mblink/issues"
},
"private": true,
"license": "MIT",
"main": "dist/htmldiff.js",
"files": [
"dist/htmldiff.d.ts",
"dist/htmldiff.js",
"dist/htmldiff.js.map",
"sample/*"
],
"type": "module",
"types": "dist/htmldiff.d.ts",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "14.14.31",
"@typescript-eslint/eslint-plugin": "~4.16.1",
"@typescript-eslint/parser": "~4.16.1",
"chai": "~4.3.1",
"eslint": "~7.21.0",
"eslint-plugin-mocha": "^10.0.3",
"mocha": "~8.3.0",
"typescript": "4.2.2"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dist": "npm run lint:ci && npm run make && npm run test:ci",
"lint": "eslint --config='.eslintrc.cjs' './src/*.ts' --fix",
"lint:ci": "npm run lint -- --max-warnings=0",
"test": "npm run build && mocha -R min",
"test:ci": "mocha -R min"
}
}