-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.65 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.65 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
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
{
"name": "medium_publish",
"version": "0.3.1",
"description": "Post draft articles to Medium",
"keywords": [
"medium",
"blog",
"article",
"publish",
"post",
"publication"
],
"bin": {
"medium_publish": "bin/medium_publish"
},
"homepage": "https://www.adaltas.com/",
"bugs": "https://github.com/adaltas/node-medium_publish/issues",
"author": "David Worms <david@adaltas.com> (https://www.adaltas.com)",
"contributors": [
"David Worms <david@adaltas.com> (https://www.adaltas.com)"
],
"main": "lib/index.js",
"license": "ISC",
"coffeelintConfig": {
"indentation": {
"level": "error",
"value": 2
},
"line_endings": {
"level": "error",
"value": "unix"
},
"max_line_length": {
"level": "ignore"
}
},
"dependencies": {
"coffeescript": "^2.7.0",
"hast-util-is-element": "^3.0.0",
"hast-util-to-text": "^4.0.2",
"js-yaml": "^4.1.0",
"medium-sdk": "^0.0.4",
"rehype-document": "^7.0.3",
"rehype-format": "^5.0.1",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-html": "^16.0.1",
"remark-links-absolute": "^0.3.4",
"remark-metadata": "^0.2.1",
"remark-parse": "^11.0.0",
"remark-preset-lint-markdown-style-guide": "^6.0.1",
"remark-public-images": "^0.1.2",
"remark-rehype": "^11.1.1",
"remark-stringify": "^11.0.0",
"remark-table-to-code": "^0.2.4",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"remark-read-frontmatter": "^0.3.2",
"remark-title-to-frontmatter": "^0.1.13",
"shell": "^0.12.0",
"to-vfile": "^8.0.0",
"vfile-reporter": "^8.1.1"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"mocha": "^11.1.0",
"should": "^13.2.3",
"standard-version": "^9.5.0"
},
"exports": {
".": "./lib/index.js",
"./*": "./lib/*.js"
},
"files": [
"/lib"
],
"mocha": {
"inline-diffs": true,
"loader": "./test/loaders/coffee.js",
"recursive": true,
"reporter": "spec",
"require": [
"should"
],
"throw-deprecation": true,
"timeout": 40000
},
"scripts": {
"build": "coffee -b -o lib src",
"pretest": "npm run build",
"prepublish": "git push --follow-tags origin master",
"publish": "npm publish",
"release": "npm test && standard-version",
"test": "mocha test/**/*.coffee"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"type": "module"
}