Files
docx-js/package.json

78 lines
2.0 KiB
JSON
Raw Normal View History

2016-03-27 02:27:44 +01:00
{
2016-03-27 02:46:26 +01:00
"name": "docx",
2018-02-08 01:19:00 +00:00
"version": "3.2.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\"",
2018-01-24 13:08:34 +00:00
"test-watch": "mocha-webpack \"src/**/*.ts\" --watch",
2017-03-08 23:35:22 +00:00
"prepublishOnly": "npm run build",
"lint": "tslint --project .",
2018-02-02 01:56:08 +00:00
"build": "npm run webpack && npm run fix-types",
"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",
2018-02-10 17:56:52 +00:00
"style": "prettier -l \"src/**/*.ts\"",
2018-02-02 01:56:08 +00:00
"fix-types": "node types-absolute-fixer.js"
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": {
2018-01-30 01:43:17 +00:00
"@types/archiver": "^2.1.0",
"@types/express": "^4.0.35",
2018-01-22 20:42:33 +00:00
"@types/image-size": "0.0.29",
2018-02-02 01:56:08 +00:00
"@types/request-promise": "^4.1.41",
2018-01-30 01:43:17 +00:00
"archiver": "^2.1.1",
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",
2018-02-02 01:56:08 +00:00
"glob": "^7.1.2",
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",
2018-02-02 01:56:08 +00:00
"replace-in-file": "^3.1.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",
2018-02-01 00:16:00 +00:00
"typescript": "2.6.2",
2017-12-22 16:49:25 +00:00
"webpack": "^3.10.0"
2016-03-27 02:46:26 +01:00
}
}