forked from FokkeZB/J2M
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
44 lines (44 loc) · 1.33 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
{
"name": "jira2md",
"version": "3.0.1",
"keywords": [
"jira",
"atlassian",
"wiki",
"markdown"
],
"homepage": "http://github.com/kylefarris/J2M.git",
"repository": {
"type": "git",
"url": "http://github.com/kylefarris/J2M.git"
},
"description": "JIRA to MarkDown text format converter.",
"main": "index.js",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^9.2.2",
"prettier": "^2.7.1"
},
"scripts": {
"format": "node_modules/.bin/prettier '**/*.{js,json}' --write",
"lint": "node_modules/.bin/eslint '**/*.js'",
"test": "mocha --timeout 5000 --check-leaks --reporter spec test/"
},
"author": "Fokke Zandbergen <mail@fokkezb.nl>",
"contributors": [
"Kyle Farris <kyle@chomponllc.com>",
"Eryk Warren <https://github.com/erykwarren>",
"Andrej Arbanas <https://github.com/aarbanas>",
"Tommi Laukkanen <https://github.com/tlaukkanen>"
],
"license": "Apache-2.0",
"dependencies": {
"marked": "^4.0.12"
}
}