96 lines
2.5 KiB
JSON
96 lines
2.5 KiB
JSON
{
|
|
"name": "cypress-cucumber-preprocessor",
|
|
"version": "4.2.0",
|
|
"description": "Run gherkin-syntaxed specs with cypress.io",
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"test": "eslint . && jest && npm run test:all",
|
|
"test:all": "cypress run --spec \"**/*.features\"",
|
|
"test:each": "cypress run --spec \"**/*.feature\"",
|
|
"test:debug": "jest && DEBUG=cypress:* cypress open\n",
|
|
"fixStyle": "eslint . --fix",
|
|
"semantic-release": "semantic-release"
|
|
},
|
|
"bin": {
|
|
"cypress-tags": "cypress-tags.js"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
|
|
"pre-commit": "lint-staged && jest"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/TheBrainFamily/cypress-cucumber-preprocessor.git"
|
|
},
|
|
"keywords": [
|
|
"cucumber",
|
|
"gherkin",
|
|
"cypress",
|
|
"testing"
|
|
],
|
|
"author": "Lukasz Gandecki",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/TheBrainFamily/cypress-cucumber-preprocessor/issues"
|
|
},
|
|
"homepage": "https://github.com/TheBrainFamily/cypress-cucumber-preprocessor#readme",
|
|
"dependencies": {
|
|
"@cypress/browserify-preprocessor": "^3.0.1",
|
|
"chai": "^4.2.0",
|
|
"chokidar": "3.5.2",
|
|
"cosmiconfig": "^4.0.0",
|
|
"cucumber": "^4.2.1",
|
|
"cucumber-expressions": "^6.0.1",
|
|
"cucumber-tag-expressions": "^1.1.1",
|
|
"dargs": "^7.0.0",
|
|
"debug": "^3.0.1",
|
|
"gherkin": "^5.1.0",
|
|
"glob": "^7.1.2",
|
|
"js-string-escape": "^1.0.1",
|
|
"minimist": "^1.2.5",
|
|
"through": "^2.3.8"
|
|
},
|
|
"devDependencies": {
|
|
"commitizen": "^4.2.1",
|
|
"cypress": "^5.1.0",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"eslint": "^7.9.0",
|
|
"eslint-config-airbnb-base": "^14.2.0",
|
|
"eslint-config-prettier": "6.12.0",
|
|
"eslint-plugin-cypress": "^2.11.1",
|
|
"eslint-plugin-import": "^2.22.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"husky": "^4.3.0",
|
|
"jest": "^26.4.2",
|
|
"lint-staged": "^10.3.0",
|
|
"prettier": "2.1.2",
|
|
"semantic-release": "^17.1.1"
|
|
},
|
|
"jest": {
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>/lib/testHelpers/setupTestFramework.js"
|
|
],
|
|
"collectCoverage": true,
|
|
"collectCoverageFrom": [
|
|
"lib/**/*.js"
|
|
],
|
|
"coveragePathIgnorePatterns": [
|
|
"node_modules",
|
|
"<rootDir>/lib/*.test.js"
|
|
]
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|