{ "name": "docx", "version": "2.1.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": "npm run build", "lint": "tslint --project ./ts", "build": "rimraf ./build && tsc -p ts", "demo": "npm run build && node ./demo", "typedoc": "typedoc --out docs/ ts/ --module commonjs --target ES6 --disableOutputCheck" }, "files": [ "ts", "build", "template" ], "repository": { "type": "git", "url": "git+https://github.com/dolanmiu/docx.git" }, "keywords": [ "office", "word", "generate", "creator", "create", "document", "doc", "officegen", "clippy" ], "types": "./build/index.d.ts", "dependencies": { "@types/archiver": "^1.3.2", "@types/express": "^4.0.35", "archiver": "^1.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", "prompt": "^1.0.0", "rimraf": "^2.5.2", "shelljs": "^0.7.7", "tslint": "^5.1.0", "typedoc": "^0.5.10", "typescript": "^2.2.1" } }