-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
57 lines (57 loc) · 1.28 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
{
"name": "@shogobg/markdown2confluence",
"version": "0.1.11",
"description": "Convert Markdown to Confluence markup",
"main": "index.js",
"scripts": {
"test": "jest --ci --coverage"
},
"author": "Milen Georgiev <Shogo>",
"license": "ISC",
"dependencies": {
"marked": "^12.0.2"
},
"engines": {
"node": ">= 18.0.0"
},
"bin": {
"markdown2confluence": "bin/markdown2confluence.js"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.12.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.2",
"prettier": "^2.1.2",
"webpack": "^5.96.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shogobg/markdown2confluence.git"
},
"keywords": [
"markdown",
"confluence",
"markup",
"convert"
],
"bugs": {
"url": "https://github.com/Shogobg/markdown2confluence/issues"
},
"homepage": "https://shogo.eu/",
"directories": {
"test": "tests"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}