UNPKG

2.34 kBJSONView Raw
1{
2 "name": "cypress-failed-log",
3 "description": "Gets you the Cypress test command log as JSON on failure",
4 "version": "1.3.1",
5 "author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
6 "bugs": "https://github.com/bahmutov/cypress-failed-log/issues",
7 "config": {
8 "pre-git": {
9 "commit-msg": "simple",
10 "pre-commit": [
11 "npm prune",
12 "npm run deps",
13 "npm test",
14 "npm run ban"
15 ],
16 "pre-push": [
17 "npm run secure",
18 "npm run license",
19 "npm run ban -- --all",
20 "npm run size"
21 ],
22 "post-commit": [],
23 "post-merge": []
24 }
25 },
26 "engines": {
27 "node": ">=6"
28 },
29 "files": [
30 "src/*.js",
31 "!src/*-spec.js",
32 "on-failed.sh"
33 ],
34 "homepage": "https://github.com/bahmutov/cypress-failed-log#readme",
35 "keywords": [
36 "cypress",
37 "fail",
38 "json",
39 "log",
40 "report",
41 "utility"
42 ],
43 "license": "MIT",
44 "main": "src/",
45 "noScopeName": "cypress-failed-log",
46 "publishConfig": {
47 "registry": "http://registry.npmjs.org/"
48 },
49 "repository": {
50 "type": "git",
51 "url": "https://github.com/bahmutov/cypress-failed-log.git"
52 },
53 "scripts": {
54 "ban": "ban",
55 "deps": "deps-ok && dependency-check .",
56 "issues": "git-issues",
57 "license": "license-checker --production --onlyunknown --csv",
58 "lint": "standard --verbose --fix src/*.js test/*.js",
59 "pretest": "npm run lint",
60 "secure": "nsp check",
61 "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
62 "test": "npm run unit",
63 "unit": "mocha src/*-spec.js",
64 "semantic-release": "semantic-release pre && npm publish && semantic-release post",
65 "failed-test": "echo Test failed, details in $1",
66 "verify-failed-json": "node test/verify-failed-json.js"
67 },
68 "devDependencies": {
69 "ban-sensitive-files": "1.8.4",
70 "dependency-check": "2.6.0",
71 "deps-ok": "1.2.0",
72 "git-issues": "1.3.1",
73 "license-checker": "8.0.3",
74 "mocha": "3.2.0",
75 "nsp": "2.6.2",
76 "pre-git": "3.12.0",
77 "standard": "8.6.0",
78 "semantic-release": "^6.3.2"
79 },
80 "standard": {
81 "globals": [
82 "cy",
83 "Cypress",
84 "beforeEach",
85 "afterEach"
86 ]
87 },
88 "dependencies": {
89 "lodash.deburr": "4.1.0",
90 "lodash.kebabcase": "4.1.0",
91 "lodash.reject": "4.6.0"
92 }
93}
\No newline at end of file