UNPKG

generator-prospa

Version:

Create fully working Single Page Applications using various technology combinations

87 lines (86 loc) 1.69 kB
{ "name": "generator-prospa", "version": "0.5.0", "description": "Create fully working Single Page Applications using various technology combinations", "homepage": "https://github.com/caprica/generator-prospa", "author": { "name": "Mark Lee", "email": "mark.lee@capricasoftware.co.uk", "url": "http://capricasoftware.co.uk" }, "files": [ "generators" ], "main": "generators/index.js", "keywords": [ "SPA", "ReactJS", "AngularJS", "EmberJS", "Vue.js", "Javalin", "Spring Boot", "SpringMVC", "Vert.x", "Java", "Kotlin", "Scala", "Groovy", "yeoman-generator" ], "devDependencies": { "yeoman-test": "^1.7.0", "yeoman-assert": "^3.1.0", "eslint": "^5.9.0", "prettier": "^1.15.2", "husky": "^1.2.0", "lint-staged": "^8.1.0", "eslint-config-prettier": "^3.3.0", "eslint-plugin-prettier": "^3.0.0", "eslint-config-xo": "^0.25.0", "jest": "^23.5.0" }, "engines": { "npm": ">= 4.0.0" }, "dependencies": { "yeoman-generator": "^4.0.1", "chalk": "^2.4.2", "yosay": "^2.0.2" }, "jest": { "testEnvironment": "node" }, "lint-staged": { "*.js": [ "eslint --fix", "git add" ], "*.json": [ "prettier --write", "git add" ] }, "eslintConfig": { "extends": [ "xo", "prettier" ], "env": { "jest": true, "node": true }, "rules": { "prettier/prettier": "error" }, "plugins": [ "prettier" ] }, "scripts": { "pretest": "eslint .", "test": "jest" }, "repository": "caprica/generator-prospa", "license": "GPL-3.0" }