2016-03-27 02:27:44 +01:00
|
|
|
{
|
2016-03-27 02:46:26 +01:00
|
|
|
"name": "docx",
|
|
|
|
"version": "0.0.0",
|
|
|
|
"description": "Generate .docx documents with JavaScript (formerly Office-Clippy)",
|
|
|
|
"main": "build/build.js",
|
|
|
|
"scripts": {
|
2016-03-28 00:53:24 +01:00
|
|
|
"pretest": "tsc ts/tests/*Test.ts --module commonjs --outDir ./build/tests;",
|
|
|
|
"test": "mocha ./build/tests/**/*Test.js"
|
2016-03-27 02:46:26 +01:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/dolanmiu/docx.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"office",
|
|
|
|
"generate",
|
|
|
|
"document",
|
|
|
|
"doc"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
|
|
|
"archiver": "^0.21.0",
|
2016-03-28 00:53:24 +01:00
|
|
|
"lodash": "^4.6.1",
|
2016-03-27 02:46:26 +01:00
|
|
|
"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": {
|
|
|
|
"mocha": "^2.4.5"
|
|
|
|
}
|
|
|
|
}
|