Files
docx-js/package.json

56 lines
1.3 KiB
JSON
Raw Normal View History

2016-03-27 02:27:44 +01:00
{
2016-03-27 02:46:26 +01:00
"name": "docx",
2017-03-08 23:35:22 +00:00
"version": "1.2.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",
2017-03-08 23:35:22 +00:00
"prepublishOnly": "npm run build",
"lint": "tslint --project ./ts",
2017-03-12 21:34:49 +00:00
"build": "rimraf ./build && tsc -p ts",
"demo": "npm run build && node ./demo/demo.js"
2016-03-27 02:46:26 +01:00
},
2017-03-08 11:48:56 +01:00
"files": [
"ts",
2017-03-13 20:35:27 +01:00
"build",
"template"
2017-03-08 11:48:56 +01:00
],
2016-03-27 02:46:26 +01:00
"repository": {
"type": "git",
"url": "git+https://github.com/dolanmiu/docx.git"
},
"keywords": [
"office",
2017-03-14 11:28:05 +00:00
"word",
2016-03-27 02:46:26 +01:00
"generate",
2017-03-14 10:51:05 +00:00
"creator",
"create"
2016-03-27 02:46:26 +01:00
"document",
"doc",
"officegen",
"clippy"
2016-03-27 02:46:26 +01:00
],
"dependencies": {
"@types/archiver": "^0.15.37",
"@types/express": "^4.0.35",
"archiver": "^1.3.0",
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": {
"@types/chai": "^3.4.35",
"@types/mocha": "^2.2.39",
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 22:56:59 +00:00
"tslint": "^4.5.1",
2017-03-07 13:51:11 +01:00
"typescript": "^2.2.1"
2016-03-27 02:46:26 +01:00
}
}