UNPKG

fountain-generator

Version:

Base generator for all Yeoman Fountain generators

76 lines (75 loc) 1.74 kB
{ "name": "fountain-generator", "version": "1.0.0", "description": "Base generator for all Yeoman Fountain generators", "homepage": "http://fountainjs.io/", "repository": "fountainjs/fountain-generator", "author": "The Fountain Team", "contributors": [ "Matthieu Lux <matthieu.lux@gmail.com> (http://swiip.github.io/)", "Mehdy Dara <mdara@eleven-labs.com> (http://eleven-labs.com/)", "Micael Mbagira <micael.mbagira@icloud.com> (http://micaelmbagira.github.io)" ], "main": "index.js", "keywords": [ "yeoman", "generator", "gulp", "gulpfile", "fountain", "cli" ], "engines": { "node": ">=4.0" }, "dependencies": { "chalk": "^1.1.3", "ejs": "^2.5.6", "falafel": "^2.0.0", "lodash": "^4.17.4", "mem-fs": "^1.1.2", "mem-fs-editor": "^3.0.2", "minimatch": "^3.0.3", "yeoman-generator": "^1.1.0" }, "devDependencies": { "ava": "^0.18.2", "babel-eslint": "^7.1.1", "cartesian-product": "^2.1.2", "chai": "^3.5.0", "chai-spies": "^0.7.1", "chai-things": "^0.2.0", "cross-spawn": "^5.0.1", "eslint": "^3.15.0", "eslint-config-xo-space": "^0.15.0", "eslint-plugin-babel": "^4.0.1", "fs-extra": "^2.0.0", "gulp": "gulpjs/gulp#4.0", "gulp-eslint": "^3.0.1", "gulp-exclude-gitignore": "^1.1.1", "gulp-nsp": "^2.4.2", "nyc": "^10.1.2" }, "ava": { "files": [ "test/lib/**/*.js" ] }, "nyc": { "include": [ "lib/*.js" ], "exclude": [ "lib/techs.json", "lib/test-utils.js" ] }, "scripts": { "test": "gulp", "prepublish": "gulp prepublish" }, "license": "MIT", "eslintConfig": { "extends": "xo-space/esnext" } }