Files
docx-js/package.json
2016-05-17 23:37:23 +01:00

41 lines
962 B
JSON

{
"name": "docx",
"version": "0.0.0",
"description": "Generate .docx documents with JavaScript (formerly Office-Clippy)",
"main": "build/index.js",
"scripts": {
"pretest": "tsc ts/tests/*Test.ts --module commonjs --outDir ./build/tests",
"test": "./node_modules/.bin/mocha ./build/tests/**/*Test.js",
"prepublish": "tsc ts/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dolanmiu/docx.git"
},
"keywords": [
"office",
"generate",
"document",
"doc"
],
"dependencies": {
"app-root-path": "^1.0.0",
"archiver": "^0.21.0",
"lodash": "^4.6.1",
"xml": "^1.0.1"
},
"typescript": {
"definition": "ts/typings/index.d.ts"
},
"author": "Dolan Miu",
"license": "MIT",
"bugs": {
"url": "https://github.com/dolanmiu/docx/issues"
},
"homepage": "https://github.com/dolanmiu/docx#readme",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5"
}
}