UNPKG

chimpy

Version:

Develop acceptance tests & end-to-end tests with realtime feedback.

142 lines (141 loc) 3.83 kB
{ "name": "chimpy", "version": "3.0.4", "description": "Develop acceptance tests & end-to-end tests with realtime feedback.", "keywords": [ "simian", "meteor", "bdd", "atdd", "cucumber", "webdriverio", "selenium", "phantom", "testing", "saucelabs" ], "author": "Sam Hatoum <sam@xolv.io> (http://xolv.io)", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/TheBrainFamily/chimpy" }, "homepage": "https://github.com/TheBrainFamily/chimpy#readme", "bugs": { "url": "https://github.com/TheBrainFamily/chimpy/issues" }, "watch": { "prepare": "src/{lib,bin}/**/*.js" }, "scripts": { "watch": "npm-watch", "prepare": "npx babel src --ignore spec,__tests__/options-loader.js --out-dir ./dist", "lint": "eslint ./src", "lintfix": "eslint ./src --fix", "start": "node ./scripts/run.js", "testonly": "npm run testunit && npm run prepare && node ./scripts/run-tests.js", "testunit": "mocha --opts ./mocha.opts \"`node -e \"console.log(require('./package.json').mocha.tests.join(' '))\"`\"", "test": "npm run testonly", "publish-patch": "./scripts/release.sh patch", "publish-minor": "./scripts/release.sh minor", "publish-major": "./scripts/release.sh major" }, "main": "dist/lib/chimp.js", "bin": { "chimp": "./bin/chimp.js", "chimpy": "./bin/chimpy.js" }, "mocha": { "files": [ "src/**/*.js", "!src/__mocks__/**/*", "!src/__tests__/**/*", "!src/**/*-spec.js" ], "tests": [ "src/lib/**/*-spec.js" ] }, "jest": { "testRunner": "jasmine2", "transform": { "^.+\\.js$": "babel-jest" }, "moduleFileExtensions": [ "js", "json", "node" ], "unmockedModulePathPatterns": [ "core-js/.*", "babel-runtime/.*" ] }, "dependencies": { "@babel/cli": "^7.8.4", "@babel/core": "^7.8.4", "@babel/plugin-transform-runtime": "^7.8.3", "@babel/polyfill": "^7.8.3", "@babel/preset-env": "^7.8.4", "@babel/register": "^7.8.3", "@babel/runtime": "^7.8.4", "async": "~0.9.0", "bluebird": "^3.5.4", "chai": "~4.1.2", "chai-as-promised": "^6.0.0", "child-process-debug": "0.0.7", "chokidar": "^2.1.6", "colors": "1.1.2", "commander": "^2.20.0", "cucumber": "github:TheBrainFamily/cucumber-js#v1.3.0-chimp.7", "deep-extend": "^0.6.0", "exit": "^0.1.2", "fibers": "^3.1.0", "freeport": "~1.0.5", "fs-extra": "^1.0.0", "glob": "github:lucetius/node-glob#chimp", "hapi": "8.8.0", "jasmine": "^2.99.0", "jsonfile": "^4.0.0", "loglevel": "~1.4.0", "minimist": "~1.2.0", "mocha": "^4.1.0", "phantomjs-prebuilt": "2.1.15", "progress": "^1.1.8", "request": "^2.88.0", "requestretry": "1.5.0", "saucelabs": "^1.5.0", "selenium-standalone": "^6.16.0", "underscore": "~1.8.3", "xolvio-ddp": "^0.12.0", "xolvio-jasmine-expect": "^1.0.0", "xolvio-sync-webdriverio": "10.0.0" }, "devDependencies": { "@babel/cli": "^7.8.4", "@babel/core": "^7.8.4", "@babel/plugin-proposal-class-properties": "^7.8.3", "@babel/plugin-proposal-export-default-from": "^7.8.3", "babel-jest": "^25.1.0", "chromedriver": "^80.0.1", "eslint": "^3.12.2", "eslint-config-airbnb": "^13.0.0", "eslint-plugin-babel": "^4.0.0", "eslint-plugin-import": "^2.17.2", "eslint-plugin-jsx-a11y": "^2.2.3", "eslint-plugin-react": "^6.8.0", "git-release-notes": "0.0.2", "jest": "^25.1.0", "npm-watch": "^0.1.6", "quibble": "^0.5.7", "shelljs": "^0.7.5", "testdouble": "^3.12.5" }, "peerDependencies": { "chromedriver": "*" }, "directories": { "doc": "docs", "test": "tests" } }