Files
docx-js/package.json

43 lines
969 B
JSON
Raw Normal View History

2016-03-27 02:27:44 +01:00
{
2016-03-27 02:46:26 +01:00
"name": "docx",
2016-07-19 18:22:36 +01:00
"version": "1.0.0",
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": {
2016-07-01 22:39:17 +01:00
"pretest": "rimraf ./build/tests && tsc -p ts/tests",
2016-07-01 22:09:55 +01:00
"test": "mocha ./build/tests/**/*.*",
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": {
2016-05-17 23:37:23 +01:00
"app-root-path": "^1.0.0",
2016-03-27 02:46:26 +01:00
"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"
},
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",
"mocha": "^2.4.5",
2016-07-01 22:39:17 +01:00
"rimraf": "^2.5.2",
"typescript": "^1.8.10"
2016-03-27 02:46:26 +01:00
}
}