Files
docx-js/package.json

43 lines
985 B
JSON
Raw Permalink Normal View History

2016-03-27 02:27:44 +01:00
{
2016-03-27 02:46:26 +01:00
"name": "docx",
2017-03-07 14:43:33 +00:00
"version": "1.0.1",
2016-03-27 02:46:26 +01:00
"description": "Generate .docx documents with JavaScript (formerly Office-Clippy)",
2016-05-10 15:26:36 +01:00
"main": "build/index.js",
2016-03-27 02:46:26 +01:00
"scripts": {
2017-03-07 13:34:01 +01:00
"pretest": "rimraf ./build-tests && tsc -p ts/test-tsconfig.json",
"test": "mocha ./build-tests --recursive",
2016-06-30 23:53:22 +01:00
"prepublish": "tsc -p ts"
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": {
"app-root-path": "^2.0.1",
"archiver": "^1.3.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"
},
2016-05-10 15:26:36 +01:00
"typescript": {
2016-05-17 23:37:23 +01:00
"definition": "ts/typings/index.d.ts"
2016-05-10 15:26:36 +01:00
},
2016-03-27 02:46:26 +01:00
"author": "Dolan Miu",
"license": "MIT",
"bugs": {
"url": "https://github.com/dolanmiu/docx/issues"
},
"homepage": "https://github.com/dolanmiu/docx#readme",
"devDependencies": {
2016-03-29 00:35:13 +01:00
"chai": "^3.5.0",
2017-03-07 13:51:11 +01:00
"mocha": "^3.2.0",
2016-07-01 22:39:17 +01:00
"rimraf": "^2.5.2",
2017-03-07 13:51:11 +01:00
"typescript": "^2.2.1"
2016-03-27 02:46:26 +01:00
}
}