UNPKG

aemfed

Version:

Upload front-end changes into AEM, refresh relevant resources in the page and get instant notifications from the error.log, all for easier and faster development.

90 lines (89 loc) 2.46 kB
{ "name": "aemfed", "version": "0.1.1", "description": "Upload front-end changes into AEM, refresh relevant resources in the page and get instant notifications from the error.log, all for easier and faster development.", "homepage": "https://aemfed.io", "author": { "name": "Matthijs Abma" }, "repository": "github:abmaonline/aemfed", "license": "MIT", "main": "lib/index.js", "types": "lib/index.d.ts", "bin": "bin/aemfed.js", "files": [ "bin", "lib", "vendor" ], "engines": { "node": ">=6.17.0" }, "dependencies": { "aemsync": "https://github.com/abmaonline/aemsync/tarball/a2bed54", "boxen": "^3.0.0", "browser-sync": "^2.26.3", "chalk": "^2.4.2", "decode-html": "^2.0.0", "graceful-fs": "^4.1.15", "is-installed-globally": "^0.1.0", "less-tree": "https://github.com/abmaonline/less-tree/tarball/58baecb", "minimist": "^1.2.0", "opn": "^5.5.0", "path": "^0.12.7", "proxy-agent": "^3.0.3", "recursive-readdir": "^2.2.2", "request": "^2.88.0", "request-promise-native": "^1.0.7", "tree-model": "^1.0.7", "util.promisify": "^1.0.0" }, "devDependencies": { "@types/chokidar": "^1.7.5", "@types/graceful-fs": "^4.1.3", "@types/micromatch": "^3.1.0", "@types/minimist": "^1.2.0", "@types/node": "6.14.4", "@types/opn": "^5.1.0", "@types/recursive-readdir": "^2.2.0", "@types/request": "^2.48.1", "@types/request-promise-native": "^1.0.15", "@types/util.promisify": "^1.0.0", "@types/vinyl": "^2.0.2", "husky": "^1.3.1", "precise-commits": "^1.0.2", "prettier": "1.16.4", "tslint": "^5.14.0", "tslint-config-prettier": "1.18.0", "typescript": "^3.3.3333" }, "scripts": { "prepare": "npm run build", "prettier": "prettier --write \"src/**/*.ts\"", "tslint": "npm run tslint-hook -- --force", "tslint-hook": "tslint -c tslint.json \"src/**/*.ts\"", "build": "rm -rf lib/ && tsc -p tsconfig.prod.json", "watch": "tsc --watch", "test": "echo \"Error: no test specified\" && exit 1" }, "husky": { "hooks": { "pre-commit": "precise-commits --check-only && npm run tslint-hook && npm run build" } }, "keywords": [ "aem", "adobe", "aemsync", "browsersync", "browser sync", "livereload", "live reload", "watch", "inject", "sync", "frontend", "front-end", "front end" ] }