100 lines
2.6 KiB
JSON
100 lines
2.6 KiB
JSON
{
|
|
"name": "docx",
|
|
"version": "6.0.1",
|
|
"description": "Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.",
|
|
"main": "build/index.js",
|
|
"scripts": {
|
|
"pretest": "rimraf ./build",
|
|
"test": "mocha-webpack \"src/**/*.ts\"",
|
|
"test.coverage": "nyc npm test",
|
|
"test.watch": "npm test -- --watch",
|
|
"prepublishOnly": "npm run build --production",
|
|
"lint": "tslint --project .",
|
|
"build": "npm run webpack && npm run fix-types",
|
|
"tsc": "rimraf ./build && tsc -p .",
|
|
"webpack": "rimraf ./build && webpack",
|
|
"demo": "npm run build && npm run ts-node ./demo",
|
|
"typedoc": "rimraf ./build && typedoc src/index.ts --tsconfig tsconfig.typedoc.json",
|
|
"style": "prettier -l \"src/**/*.ts\"",
|
|
"style.fix": "npm run style -- --write",
|
|
"fix-types": "ts-node scripts/types-absolute-fixer.ts",
|
|
"e2e": "ts-node scripts/e2e.ts",
|
|
"serve.docs": "cd docs && docsify serve",
|
|
"ts-node": "ts-node"
|
|
},
|
|
"pre-commit": [
|
|
"style",
|
|
"lint"
|
|
],
|
|
"files": [
|
|
"src",
|
|
"build",
|
|
"template"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/dolanmiu/docx.git"
|
|
},
|
|
"keywords": [
|
|
"docx",
|
|
"office",
|
|
"word",
|
|
"generate",
|
|
"creator",
|
|
"create",
|
|
"document",
|
|
"doc",
|
|
"officegen",
|
|
"clippy"
|
|
],
|
|
"types": "./build/index.d.ts",
|
|
"dependencies": {
|
|
"@types/jszip": "^3.1.4",
|
|
"@types/node": "^14.0.5",
|
|
"jszip": "^3.1.5",
|
|
"nanoid": "^3.1.20",
|
|
"xml": "^1.0.1",
|
|
"xml-js": "^1.6.8"
|
|
},
|
|
"author": "Dolan Miu",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/dolanmiu/docx/issues"
|
|
},
|
|
"homepage": "https://github.com/dolanmiu/docx#readme",
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.15",
|
|
"@types/mocha": "^8.0.0",
|
|
"@types/request-promise": "^4.1.42",
|
|
"@types/sinon": "^9.0.4",
|
|
"@types/webpack": "^4.4.24",
|
|
"awesome-typescript-loader": "^3.4.1",
|
|
"chai": "^3.5.0",
|
|
"docsify-cli": "^4.3.0",
|
|
"glob": "^7.1.2",
|
|
"istanbul-instrumenter-loader": "^3.0.1",
|
|
"jszip": "^3.1.5",
|
|
"mocha": "^5.2.0",
|
|
"mocha-webpack": "^1.0.1",
|
|
"nyc": "^15.1.0",
|
|
"pre-commit": "^1.2.2",
|
|
"prettier": "^2.1.2",
|
|
"prompt": "^1.0.0",
|
|
"replace-in-file": "^3.1.0",
|
|
"request": "^2.88.0",
|
|
"request-promise": "^4.2.2",
|
|
"rimraf": "^3.0.2",
|
|
"shelljs": "^0.8.4",
|
|
"sinon": "^9.0.2",
|
|
"ts-node": "^9.0.0",
|
|
"tslint": "^6.1.3",
|
|
"tslint-immutable": "^6.0.1",
|
|
"typedoc": "^0.20.29",
|
|
"typescript": "4.2.3",
|
|
"webpack": "^3.10.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=10"
|
|
}
|
|
}
|