UNPKG

generator-office

Version:

Yeoman generator for creating Microsoft Office projects using any text editor.

75 lines (74 loc) 2.3 kB
{ "name": "generator-office", "version": "3.0.2", "description": "Yeoman generator for creating Microsoft Office projects using any text editor.", "repository": { "type": "git", "url": "https://github.com/OfficeDev/generator-office/" }, "scripts": { "copy": "copyfiles \"src/app/templates/**/*.*\" -u 2 generators/app && copyfiles \"src/app/config/**/projectProperties.json*\" -u 3 generators/app/templates && copyfiles \"src/app/config/**/projectProperties.json*\" -u 3 generators/test", "lint": "eslint --ext .ts src", "tsc": "tsc -p tsconfig.json", "tsc-watch": "tsc -p tsconfig.json -w", "start": "rimraf generators && concurrently \"npm run tsc-watch\" \"npm run copy-watch\"", "build": "rimraf generators && concurrently \"npm run tsc\" \"npm run copy\"", "test": "mocha --timeout 0 -r ts-node/register generators/test/**.js" }, "engines": { "node": ">=14" }, "homepage": "https://github.com/officedev/generator-office", "license": "MIT", "author": "OfficeDev", "files": [ "generators" ], "type": "module", "main": "generators/index.js", "keywords": [ "office", "yeoman-generator", "office-add-in", "add-in", "outlook", "excel", "word", "powerpoint", "onenote", "project" ], "dependencies": { "adm-zip": "0.5.16", "axios": "^1.7.7", "chalk": "^5.4.1", "lodash": "^4.17.21", "office-addin-usage-data": "^2.0.3", "open": "^8.4.0", "uuid": "^8.3.2", "yeoman-generator": "^7.0.0", "yosay": "^2.0.2" }, "devDependencies": { "@types/adm-zip": "^0.5.7", "@types/lodash": "^4.17.14", "@types/mocha": "^10.0.10", "@types/node": "^22.10.6", "@types/request": "^2.48.8", "@typescript-eslint/eslint-plugin": "^8.0.0", "@typescript-eslint/parser": "^8.0.0", "concurrently": "^9.1.2", "copyfiles": "^2.4.1", "eslint": "^9.0.0", "eslint-config-prettier": "9.1.0", "mocha": "^11.0.0", "office-addin-manifest": "^2.0.3", "prettier": "^3.4.2", "rimraf": "^6.0.1", "ts-node": "^10.7.0", "typescript": "^5.2.2", "yeoman-assert": "^3.1.1", "yeoman-environment": "^4.4.3", "yeoman-test": "^10.0.1" } }