-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 907 Bytes
/
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
{
"name": "@nursingclio/doc-converter",
"version": "0.3.0",
"description": "Convert docx files to simple HTML for WordPress.",
"author": "Adam Turner",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/nursingclio/doc-converter/blob/stable/README.md",
"repository": {
"type": "git",
"url": "https://github.com/nursingclio/doc-converter"
},
"bugs": {
"url": "https://github.com/nursingclio/doc-converter/issues"
},
"keywords": [
"node",
"docx",
"html",
"conversion"
],
"main": "index.js",
"devDependencies": {
"mammoth": "^1.4.14",
"npm-package-json-lint": "^5.1.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
},
"scripts": {
"NCconvert": "./index.js",
"NCconvertwin": "node index.js",
"lint:pkg": "npmPkgJsonLint .",
"clean:input": "rimraf input/*",
"clean:output": "rimraf output/*",
"clean": "run-p clean:*",
"test": "run-p 'lint:*'"
}
}