-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.38 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
{
"name": "postproc",
"homepage": "http://github.com/rse/postproc",
"description": "Post-Process Output of Program",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Dr. Ralf S. Engelschall",
"email": "rse@engelschall.com",
"url": "http://engelschall.com"
},
"keywords": [
"post-process", "stdout", "stderr", "output", "command"
],
"repository": {
"type": "git",
"url": "git://github.com/rse/postproc.git"
},
"bugs": {
"url": "http://github.com/rse/postproc/issues"
},
"bin": {
"postproc": "./postproc.js"
},
"devDependencies": {
"eslint": "9.39.4",
"@eslint/js": "9.39.4",
"eslint-plugin-n": "17.24.0",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-import": "2.32.0",
"neostandard": "0.13.0",
"globals": "17.4.0",
"npm-run-all": "4.1.5",
"pkg": "5.5.2",
"remark-cli": "10.0.1",
"remark": "14.0.2",
"remark-man": "8.0.1"
},
"dependencies" : {
"yargs": "17.4.0",
"execa": "5.1.1",
"byline": "5.0.0",
"tokenizr": "1.6.5",
"strip-ansi": "6.0.1",
"ansi-styles": "5.2.0",
"chalk": "4.1.2",
"tail": "2.2.4",
"moment": "2.29.1"
},
"upd": [ "!execa", "!strip-ansi", "!ansi-styles", "!chalk" ],
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"prepublishOnly": "npm-run-all -s lint",
"build": "npm-run-all -s lint generate:man package",
"clean": "npm-run-all -s package:clean generate:clean",
"lint": "eslint --config eslint.mjs postproc.js",
"package": "make package",
"package:clean": "rm -f postproc-linux-debian-x64.tar.xz postproc-linux-alpine-x64.tar.xz",
"generate:man": "remark --quiet --use remark-man --output postproc.1 postproc.md",
"generate:clean": "rm -f postproc.1"
}
}