{ "name": "docx", "version": "3.1.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", "tsc": "rimraf ./build && tsc -p .", "webpack": "rimraf ./build && webpack", "demo": "npm run build && node ./demo", "typedoc": "npm run build && typedoc --out docs/ src/ --module commonjs --target ES6 --disableOutputCheck", "style": "prettier -l --trailing-comma all --print-width 140 --arrow-parens always \"src/**/*.ts\"" }, "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/express": "^4.0.35", "@types/image-size": "0.0.29", "@types/request": "^2.0.3", "@types/request-promise": "^4.1.39", "archiver": "^2.1.1", "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", "awesome-typescript-loader": "^3.4.1", "chai": "^3.5.0", "mocha": "^3.2.0", "mocha-webpack": "^1.0.1", "prettier": "^1.10.2", "prompt": "^1.0.0", "rimraf": "^2.5.2", "shelljs": "^0.7.7", "tslint": "^5.1.0", "typedoc": "^0.9.0", "typescript": "2.4.1", "webpack": "^3.10.0" } }