-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
85 lines (85 loc) · 2.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "cypress-failed-log",
"description": "Gets you the Cypress test command log as JSON on failure",
"version": "0.0.0-development",
"author": "Gleb Bahmutov <[email protected]>",
"bugs": "https://github.com/bahmutov/cypress-failed-log/issues",
"engines": {
"node": ">=6"
},
"files": [
"on.js",
"src/*.js",
"!src/*-spec.js"
],
"homepage": "https://github.com/bahmutov/cypress-failed-log#readme",
"keywords": [
"cypress",
"fail",
"json",
"log",
"report",
"utility"
],
"license": "MIT",
"main": "src/",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/cypress-failed-log.git"
},
"scripts": {
"ban": "ban",
"badges": "npx -p dependency-version-badge update-badge cypress",
"deps": "deps-ok && dependency-check . --unused --no-dev --ignore-module logdown",
"issues": "git-issues",
"license": "license-checker --production --onlyunknown --csv",
"lint": "standard --verbose --fix src/*.js test/*.js",
"pretest": "npm run lint",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"test": "npm run unit",
"unit": "mocha --timeout 180000 src/*-spec.js",
"postunit": "npm run warn-only",
"semantic-release": "semantic-release",
"failed-test": "echo Test failed, details in $1",
"verify-failed-json": "node test/verify-failed-json.js",
"clean": "rm failed-*.json || true",
"cy:open": "cypress open",
"cy:run": "cypress run",
"warn-only": "stop-only --warn -f src",
"stop-only": "stop-only -f src"
},
"devDependencies": {
"ban-sensitive-files": "1.9.7",
"cypress": "11.2.0",
"dependency-check": "4.1.0",
"deps-ok": "1.4.1",
"git-issues": "1.3.1",
"lazy-ass": "1.6.0",
"license-checker": "25.0.1",
"lodash": "4.17.15",
"mocha": "7.1.2",
"mocha-banner": "1.1.2",
"prettier-standard": "16.3.0",
"rimraf": "3.0.2",
"semantic-release": "19.0.5",
"snap-shot-it": "7.9.3",
"standard": "14.3.3",
"stop-only": "3.1.0",
"terminal-banner": "1.1.0"
},
"standard": {
"globals": [
"cy",
"Cypress",
"beforeEach",
"afterEach"
]
},
"dependencies": {
"debug": "4.3.4",
"logdown": "3.3.1"
}
}