forked from davidar/pandiff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.56 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.56 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
{
"name": "pandiff",
"version": "0.5.0",
"description": "Prose diffs for any document format supported by Pandoc",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": "lib/cli.js",
"files": [
"assets",
"lib"
],
"scripts": {
"test": "mocha lib/**/*.spec.js",
"check": "gts check",
"compile": "tsc",
"prepare": "yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn run check",
"clean": "gts clean",
"fix": "gts fix"
},
"author": "David A Roberts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/davidar/pandiff.git"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/command-line-args": "^5.0.0",
"@types/diff": "^4.0.2",
"@types/jsdom": "^16.2.4",
"@types/mocha": "^8.0.3",
"@types/node": "^13.11.1",
"@types/wordwrap": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"chai": "^4.2.0",
"eslint": "^7.8.1",
"eslint-plugin-prettier": "^3.1.4",
"gts": "^2.0.2",
"mocha": "^8.1.3",
"prettier": "^2.1.1",
"standard": "^14.3.4",
"typescript": "^3.8.3"
},
"dependencies": {
"command-line-args": "^5.1.1",
"diff": "^4.0.2",
"github-markdown-css": "^4.0.0",
"jsdom": "^16.4.0",
"node-htmldiff": "^0.9.3",
"nodejs-sh": "^0.2.0",
"wordwrap": "^1.0.0"
},
"standard": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"ignore": [
"index.js"
]
}
}