Files
docx-js/package.json

75 lines
1.9 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-12-06 01:39:40 +00:00
"version": "3.1.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": {
"pretest": "rimraf ./build",
2017-12-30 20:01:20 +00:00
"test": "mocha-webpack \"src/**/*.ts\"",
2017-03-08 23:35:22 +00:00
"prepublishOnly": "npm run build",
"lint": "tslint --project .",
2017-12-29 01:46:31 +00:00
"build": "npm run webpack",
"tsc": "rimraf ./build && tsc -p .",
2017-12-22 16:49:25 +00:00
"webpack": "rimraf ./build && webpack",
2017-04-15 17:46:56 +01:00
"demo": "npm run build && node ./demo",
2018-01-22 23:38:49 +00:00
"typedoc": "npm run build && typedoc --out docs/ src/ --module commonjs --target ES6 --disableOutputCheck",
"style": "prettier -l --trailing-comma all --print-width 140 --arrow-parens always \"src/**/*.ts\""
2016-03-27 02:46:26 +01:00
},
2017-03-08 11:48:56 +01:00
"files": [
2017-12-15 00:01:59 +00:00
"src",
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": [
2017-09-19 16:02:06 +01:00
"docx",
2016-03-27 02:46:26 +01:00
"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",
2017-03-14 11:33:46 +00:00
"create",
2016-03-27 02:46:26 +01:00
"document",
"doc",
"officegen",
"clippy"
2016-03-27 02:46:26 +01:00
],
2017-07-07 14:34:03 +01:00
"types": "./build/index.d.ts",
2016-03-27 02:46:26 +01:00
"dependencies": {
2017-07-08 01:24:25 +01:00
"@types/archiver": "^1.3.4",
"@types/express": "^4.0.35",
2018-01-22 20:42:33 +00:00
"@types/image-size": "0.0.29",
2017-09-30 18:15:33 +01:00
"@types/request": "^2.0.3",
2017-12-05 02:24:49 +00:00
"@types/request-promise": "^4.1.39",
"archiver": "^1.3.0",
2018-01-22 19:34:30 +00:00
"image-size": "^0.6.2",
2017-09-30 18:15:33 +01:00
"request": "^2.83.0",
2017-12-05 02:24:49 +00:00
"request-promise": "^4.2.2",
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",
2017-12-22 16:49:25 +00:00
"awesome-typescript-loader": "^3.4.1",
2016-03-29 00:35:13 +01:00
"chai": "^3.5.0",
2017-03-07 13:51:11 +01:00
"mocha": "^3.2.0",
2017-12-30 20:01:20 +00:00
"mocha-webpack": "^1.0.1",
2018-01-22 23:38:49 +00:00
"prettier": "^1.10.2",
"prompt": "^1.0.0",
2016-07-01 22:39:17 +01:00
"rimraf": "^2.5.2",
"shelljs": "^0.7.7",
2017-04-15 17:47:29 +01:00
"tslint": "^5.1.0",
2017-12-29 02:05:34 +00:00
"typedoc": "^0.9.0",
2017-12-22 16:49:25 +00:00
"typescript": "2.4.1",
"webpack": "^3.10.0"
2016-03-27 02:46:26 +01:00
}
}