-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "asciidoctor-converter-opendocument",
"version": "1.0.0-alpha.12",
"description": "Convert Asciidoc documents to OpenDocument (ODT) files.",
"main": "index.js",
"dependencies": {},
"peerDependencies": {
"@asciidoctor/core": ">=2.0.0-rc.1 <3"
},
"devDependencies": {
"eslint": "^5.15.3"
},
"scripts": {
"lint": "eslint **/*.js",
"pretest": "npm run lint",
"test": "exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oncletom/asciidoctor-converter-opendocument.git"
},
"keywords": [
"asciidoctor",
"asciidoc",
"converter",
"opendocument",
"odt",
"odf"
],
"prettier": {
"arrowParens": "always",
"bracketSpacing": false,
"singleQuote": true
},
"author": "Thomas Parisot (https://oncletom.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/oncletom/asciidoctor-converter-opendocument/issues"
},
"homepage": "https://github.com/oncletom/asciidoctor-converter-opendocument#readme"
}