klee
Version:
Record browser interactions for testing.
70 lines (69 loc) • 1.56 kB
JSON
{
"name": "klee",
"description": "Record browser interactions for testing.",
"version": "0.0.3",
"author": "juansgaitan @juansgaitan",
"bin": {
"klee": "./bin/run"
},
"bugs": "mailto:issues@klee-cli.com",
"dependencies": {
"@oclif/command": "^1.5.12",
"@oclif/config": "^1.12.10",
"@oclif/plugin-help": "^2.1.6",
"bluebird": "^3.5.3",
"puppeteer": "^1.13.0",
"screenres": "^2.0.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@oclif/dev-cli": "^1.21.3",
"@oclif/test": "^1.2.4",
"chai": "^4.2.0",
"eslint": "^5.15.3",
"eslint-config-oclif": "^3.1.0",
"globby": "^8.0.2",
"mocha": "^5.2.0",
"nyc": "^13.3.0"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://klee-cli.com",
"keywords": [
"browser-automation",
"test-automation",
"qa-automation",
"testing-tool",
"cli-tool",
"cli"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "klee",
"hooks": {
"prerun": [
"./src/hooks/prerun.js"
]
},
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "juansgaitan/Klee",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif-dev readme && git add README.md"
}
}