-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
66 lines (66 loc) · 1.6 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
59
60
61
62
63
64
65
66
{
"name": "pandiff",
"version": "0.6.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.3.4",
"@types/command-line-args": "^5.2.0",
"@types/diff": "^5.0.2",
"@types/jsdom": "^21.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.5",
"@types/wordwrap": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"chai": "^4.3.7",
"eslint": "^8.36.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"gts": "^3.1.1",
"mocha": "^10.2.0",
"prettier": "^2.8.6",
"standard": "^17.0.0",
"typescript": "^5.0.2"
},
"dependencies": {
"command-line-args": "^5.2.1",
"diff": "^5.1.0",
"github-markdown-css": "^5.2.0",
"jsdom": "^21.1.1",
"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"
]
}
}