{ "name": "docx", "version": "3.6.0", "description": "Generate .docx documents with JavaScript (formerly Office-Clippy)", "main": "build/index.js", "scripts": { "pretest": "rimraf ./build", "test": "mocha-webpack \"src/**/*.ts\"", "test-watch": "mocha-webpack \"src/**/*.ts\" --watch", "prepublishOnly": "npm run build", "lint": "tslint --project .", "build": "npm run webpack && npm run fix-types", "tsc": "rimraf ./build && tsc -p .", "webpack": "rimraf ./build && webpack", "demo": "npm run build && node ./demo", "typedoc": "typedoc --out docs/api/ src/ --module commonjs --target ES6 --disableOutputCheck --excludePrivate --externalPattern \"**/*.spec.ts\"", "style": "prettier -l \"src/**/*.ts\"", "style.fix": "prettier \"src/**/*.ts\" --write", "fix-types": "node types-absolute-fixer.js" }, "pre-commit": [ "style", "lint" ], "files": [ "src", "build", "template" ], "repository": { "type": "git", "url": "git+https://github.com/dolanmiu/docx.git" }, "keywords": [ "docx", "office", "word", "generate", "creator", "create", "document", "doc", "officegen", "clippy" ], "types": "./build/index.d.ts", "dependencies": { "@types/archiver": "^2.1.0", "@types/bluebird": "3.5.20", "@types/express": "^4.0.35", "@types/image-size": "0.0.29", "@types/request-promise": "^4.1.42", "archiver": "^2.1.1", "fast-xml-parser": "^3.3.6", "image-size": "^0.6.2", "request": "^2.83.0", "request-promise": "^4.2.2", "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", "@types/sinon": "^4.3.1", "awesome-typescript-loader": "^3.4.1", "chai": "^3.5.0", "glob": "^7.1.2", "jszip": "^3.1.5", "mocha": "^3.2.0", "mocha-webpack": "^1.0.1", "pre-commit": "^1.2.2", "prettier": "^1.12.1", "prompt": "^1.0.0", "replace-in-file": "^3.1.0", "rimraf": "^2.5.2", "shelljs": "^0.7.7", "sinon": "^5.0.7", "tslint": "^5.11.0", "typedoc": "^0.11.1", "typescript": "2.9.2", "webpack": "^3.10.0" } }