UNPKG

docxtemplater

Version:

docx and pptx generator working with templates and data (like Mustache, for Word and Powerpoint documents)

108 lines (107 loc) 3.8 kB
{ "name": "docxtemplater", "version": "3.22.3", "author": "Edgar Hipp", "description": "docx and pptx generator working with templates and data (like Mustache, for Word and Powerpoint documents)", "contributors": [ { "name": "Edgar Hipp" } ], "main": "js/docxtemplater.js", "keywords": [ "docx", "pptx", "templates", "generation", "microsoft word", "microsoft powerpoint", "report" ], "types": "./js/docxtemplater.d.ts", "repository": { "type": "git", "url": "https://github.com/open-xml-templating/docxtemplater" }, "dependencies": { "xmldom": "^0.6.0" }, "devDependencies": { "@babel/cli": "^7.14.5", "@babel/core": "^7.14.6", "@babel/eslint-parser": "^7.14.7", "@babel/plugin-proposal-object-rest-spread": "^7.14.7", "@babel/preset-env": "^7.14.7", "@wdio/cli": "^7.7.4", "angular-expressions": "^1.1.3", "babel-eslint": "^10.1.0", "babel-loader": "^8.2.2", "chai": "^4.3.4", "chalk": "^4.1.1", "diff": "^5.0.0", "envify": "^4.1.0", "es6-promise": "^4.2.8", "eslint": "^7.29.0", "eslint_d": "^10.1.3", "eslint-plugin-import": "^2.23.4", "finalhandler": "^1.1.2", "lodash": "^4.17.21", "mkdirp": "^1.0.4", "mocha": "^9.0.1", "nyc": "^15.1.0", "pizzip": "^3.0.6", "prettier": "^2.3.2", "request": "^2.88.2", "rimraf": "^3.0.2", "selenium-standalone": "^7.1.0", "serve-static": "^1.14.1", "tsd": "^0.17.0", "webdriverio": "^7.7.4", "webpack": "^5.41.0", "webpack-cli": "^4.7.2" }, "license": "MIT", "engines": { "node": ">=0.10" }, "scripts": { "generate:doc": "cd docs; rm build/ -rf ; make html", "profile": "./profile.bash", "preversion": "npm run test:es6 && npm run lint && FAST= npm test && rimraf build && mkdirp build && npm run browserify && npm run test:typings && npm run verifypublishsize && npm run test:browser", "version": "./replace-versions-in-doc.bash", "check-casing": "./check-casing.bash", "compile": "npm run convertto:es5", "browserify:test": "FILE=test webpack", "browserify:lib": "webpack", "browserify:min": "MIN=true webpack", "updtr": "updtr", "browserify": "npm run browserify:test && npm run browserify:lib && npm run browserify:min", "convertto:es5": "rimraf js -rf && mkdirp js && npm run babel && cp es6/tests/*.xml js/tests && cp es6/*.ts js", "convertto:es5:watch": "npm run babel -- --watch", "test:coverage": "nyc --reporter=html --reporter=text mocha -- es6/tests/index.js", "prettier": "prettier --list-different 'es6/**/!(filenames).js' '*.js' README.md CHANGELOG.md", "prettier:fix": "prettier --write 'es6/**/!(filenames).js' '*.js' README.md CHANGELOG.md", "lint": "eslint_d . && ./check-casing.bash && npm run prettier", "lint:fix": "eslint_d . --fix && ./check-casing.bash && npm run prettier:fix", "test:chrome": "BROWSER=CHROME ./webdriver.bash", "test:firefox": "BROWSER=FIREFOX ./webdriver.bash", "test:browser": "./webdriver.bash", "babel": "babel es6 --out-dir js", "mocha": "mocha --full-trace --check-leaks js/tests/index.js", "test:es6": "mocha --full-trace --check-leaks es6/tests/index.js", "test:es6:fast": "FAST=true mocha --full-trace --check-leaks es6/tests/index.js", "test:watch": "FAST=true mocha --watch --full-trace --check-leaks es6/tests/index.js", "test:es6:slow": "FAST= mocha --full-trace --check-leaks es6/tests/index.js", "test": "npm run convertto:es5 && npm run mocha", "test:es5": "npm test", "test:typings": "cp es6/*.ts js && tsd .", "verifypublishsize": "./verifypublishsize.bash" }, "tsd": { "compilerOptions": { "lib": [ "DOM" ] } } }