-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.12 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
67
68
69
70
71
{
"name": "pandocjs",
"version": "2.9.2-1.1",
"description": "Another wrapper for pandoc, including automatic binary download",
"main": "index.js",
"scripts": {
"postinstall": "node -e \"require('github-release-packager').UpdateBinary()\"",
"pretest": "npm run build",
"test": "node ./node_modules/mocha/bin/_mocha --timeout 999999 --colors ./test/_suite.js",
"linter": "semistandard",
"prermdecl": "npm run linter",
"rmdecl": "node -e \"require('@nbb.com/npmbuildtools/lib/declaration-files').RemoveDeclarations()\"",
"pretsc": "npm run rmdecl",
"tsc": "tsc -p tsconfig.build.json",
"posttsc": "tsc -p tsconfig.json",
"build": "node -e \"require('github-release-packager').UpdatePackage({ operation: 2})\"",
"postbuild": "npm run tsc",
"prepack": "node \"node_modules/github-release-packager/lib/renamebin\"",
"postpack": "node -e \"require('@nbb.com/npmbuildtools').PostPack([['node_modules/github-release-packager/lib/restorebin']], { logLevel: 'none' })\""
},
"keywords": [
"javascript",
"pandoc",
"markdown",
"docbook",
"asciidoc",
"jsdoc"
],
"author": "Thorben Wolkersdorfer <[email protected]> (https://www.notebooksbilliger.de/)",
"license": "MIT",
"repository": "github:thorbenw/pandocjs",
"engines": {
"node": ">=8.17.0"
},
"directories": {
"lib": "./lib",
"test": "./test"
},
"dependencies": {
"@nbb.com/npmbuildtools": "^2.2.13",
"fs-extra": "^8.1.0",
"github-release-packager": "^0.0.8",
"tar4": "npm:tar@^4.4.13"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/mocha": "^7.0.2",
"mocha": "^7.1.1"
},
"semistandard": {
"env": "mocha"
},
"grp": {
"repository": "github:jgm/pandoc",
"plugin": "./lib/grp-plugin-pandoc",
"versionSuffix": "1",
"executables": {
"pandoc": {
"win32": {
"default": "bin/2.9.2.1/pandoc-2.9.2.1/pandoc.exe"
},
"linux": {
"x64": "bin/2.9.2.1/pandoc-2.9.2.1/bin/pandoc"
},
"darwin": {
"default": "bin/2.9.2.1/pandoc-2.9.2.1/bin/pandoc"
}
}
}
}
}