-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 2.38 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "mkd2pdf",
"version": "1.0.2",
"description": "Renders markdown text in PDF using Google Chrome headless mode",
"keywords": [
"md",
"markdown",
"pdf",
"md2pdf"
],
"repository": "https://github.com/ivoronin/mkd2pdf",
"main": "index.js",
"bin": {
"mkd2pdf": "./index.js"
},
"scripts": {
"lint": "eslint .",
"test": "mocha"
},
"author": "Ilya Voronin <ivoronin@gmail.com> (https://github.com/ivoronin/)",
"license": "MIT",
"dependencies": {
"chrome-headless-render-pdf": "^1.5.1",
"ejs": "^2.5.7",
"file-url": "^2.0.2",
"github-markdown-css": "^2.10.0",
"normalize.css": "^8.0.0",
"showdown": "^1.8.6",
"tmp": "0.0.33",
"yargs": "^11.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.18.2",
"mocha": "^5.0.4"
},
"eslintConfig": {
"extends": "eslint:all",
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
],
"valid-jsdoc": [
"error",
{
"requireReturnType": true,
"requireParamDescription": true,
"requireReturnDescription": true
}
],
"array-element-newline": [
"error",
{
"multiline": true
}
],
"max-len": [
"error",
{
"code": 120
}
],
"func-style": "off",
"padded-blocks": [
"error",
"never"
],
"lines-around-comment": [
"error",
{
"allowBlockStart": true
}
],
"quote-props": [
"error",
"consistent-as-needed"
],
"id-length": [
"error",
{
"properties": "never"
}
],
"object-curly-spacing": [
"error",
"always"
],
"object-property-newline": [
"error",
{
"allowAllPropertiesOnSameLine": true
}
],
"comma-dangle": [
"error",
"always-multiline"
],
"no-confusing-arrow": [
"error",
{
"allowParens": true
}
],
"no-ternary": "off",
"multiline-ternary": [
"error",
"always-multiline"
],
"no-sync": "off",
"one-var": "off"
}
}
}