UNPKG

gherkin-precompiler

Version:
60 lines (59 loc) 1.88 kB
{ "name": "gherkin-precompiler", "version": "1.3.0", "description": "Simple pre-compiler for Gherkin feature files", "main": "lib/index.js", "bin": { "gherkin-precompiler": "bin/precompile.js", "precompile": "bin/precompile.js" }, "scripts": { "test": "mocha ./test/*.spec.js ./test/builtIn/*.spec.js", "coverage": "istanbul cover --include-all-sources ./node_modules/mocha/bin/_mocha --root ./lib -- ./test/*.spec.js ./test/builtIn/*.spec.js", "travis": "istanbul cover --include-all-sources ./node_modules/mocha/bin/_mocha --root ./lib --report lcovonly -- ./test/*.spec.js ./test/builtIn/*.spec.js -R spec && cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage" }, "preferGlobal": false, "repository": { "type": "git", "url": "git+https://github.com/judit-nahaj/gherkin-precompiler.git" }, "keywords": [ "gherkin", "cucumber", "feature file" ], "author": "Judit Nahaj <n.juditt@gmail.com>", "contributors": [ "Laszlo Szikszai <sziklaszlo@gmail.com>" ], "license": "MIT", "bugs": { "url": "https://github.com/judit-nahaj/gherkin-precompiler/issues" }, "engines": { "node": ">=6.0.0", "npm": ">=3.0.0" }, "homepage": "https://github.com/judit-nahaj/gherkin-precompiler#readme", "devDependencies": { "chai": "^4.1.2", "concat-stream": "^1.6.0", "coveralls": "^3.0.0", "istanbul": "^0.4.5", "mocha": "^5.0.0", "proxyquire": "^1.8.0", "sinon": "^4.1.2", "vinyl": "^2.1.0" }, "dependencies": { "fs-extra": "^5.0.0", "gherkin": "^5.0.1", "gherkin-assembler": "^2.0.0", "gherkin-ast": "^1.1.0", "glob": "^7.1.2", "gulp-util": "^3.0.8", "object-set-type": "^1.0.1", "through2": "^2.0.3", "yargs": "^11.0.0" } }