55 lines
1.2 KiB
JSON
55 lines
1.2 KiB
JSON
{
|
|
"name": "docx",
|
|
"version": "1.2.0",
|
|
"description": "Generate .docx documents with JavaScript (formerly Office-Clippy)",
|
|
"main": "build/index.js",
|
|
"scripts": {
|
|
"pretest": "rimraf ./build-tests && tsc -p ts/test-tsconfig.json",
|
|
"test": "mocha ./build-tests --recursive",
|
|
"prepublishOnly": "tsc -p ts",
|
|
"lint": "tslint --project ./ts"
|
|
},
|
|
"files": [
|
|
"ts",
|
|
"build"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/dolanmiu/docx.git"
|
|
},
|
|
"keywords": [
|
|
"office",
|
|
"generate",
|
|
"document",
|
|
"doc",
|
|
"officegen",
|
|
"clippy"
|
|
],
|
|
"dependencies": {
|
|
"@types/archiver": "^0.15.37",
|
|
"@types/express": "^4.0.35",
|
|
"@types/lodash": "^4.14.54",
|
|
"app-root-path": "^2.0.1",
|
|
"archiver": "^1.3.0",
|
|
"install": "^0.8.7",
|
|
"lodash": "^4.6.1",
|
|
"npm": "^4.3.0",
|
|
"xml": "^1.0.1"
|
|
},
|
|
"author": "Dolan Miu",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/dolanmiu/docx/issues"
|
|
},
|
|
"homepage": "https://github.com/dolanmiu/docx#readme",
|
|
"devDependencies": {
|
|
"@types/chai": "^3.4.35",
|
|
"@types/mocha": "^2.2.39",
|
|
"chai": "^3.5.0",
|
|
"mocha": "^3.2.0",
|
|
"rimraf": "^2.5.2",
|
|
"tslint": "^4.5.1",
|
|
"typescript": "^2.2.1"
|
|
}
|
|
}
|