-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.8 KB
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
67
68
69
70
71
72
73
74
75
{
"name": "pandiff",
"version": "0.8.0",
"description": "Prose diffs for any document format supported by Pandoc",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"pandiff": "lib/cli.js"
},
"engines": {
"node": ">=18"
},
"files": [
"assets",
"lib"
],
"scripts": {
"test": "mocha lib/**/*.spec.js",
"compile": "tsc",
"prepare": "yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn run lint",
"clean": "gts clean",
"fix": "gts fix",
"lint": "gts lint"
},
"author": "David A Roberts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/davidar/pandiff.git"
},
"devDependencies": {
"@eslint/eslintrc": "^2.1.4",
"@eslint/js": "^8.56.0",
"@types/chai": "^5.2.0",
"@types/command-line-args": "^5.2.0",
"@types/diff": "^7.0.1",
"@types/jsdom": "^21.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.11.19",
"@types/wordwrap": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@typescript-eslint/typescript-estree": "^7.0.1",
"chai": "^5.2.0",
"eslint": "^8.56.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"gts": "^5.2.0",
"mocha": "^11.1.0",
"prettier": "^3.2.5",
"standard": "^17.1.0",
"typescript": "^5.1.6"
},
"dependencies": {
"command-line-args": "^6.0.1",
"diff": "^7.0.0",
"github-markdown-css": "^5.2.0",
"jsdom": "^26.0.0",
"node-htmldiff": "^0.9.4",
"nodejs-sh": "^0.2.0",
"wordwrap": "^1.0.0"
},
"standard": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"ignore": [
"index.js"
]
}
}