-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.55 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": "bdd-tc",
"version": "0.0.11",
"description": "Codegen from Yadda features",
"main": "lib/helpers.js",
"bin": {
"bdd-tc": "bin/cli"
},
"scripts": {
"build": "bin/cli tests/e2e/features",
"dev": "npm test -- -w",
"lint": "eslint bin lib tests",
"test": "npm run test:unit --",
"test:ci": "npm run coverage:all && npm run report -- -r lcov",
"test:e2e": "testcafe chrome:headless $(npm run build | tail -1) --color --skip-js-errors",
"test:all": "npm run test:run tests/unit && npm run report -- -r html",
"test:run": "NODE_ENV=test _mocha --exit --recursive -bR spec",
"test:unit": "npm run test:run tests/unit --",
"coverage": "nyc -x '**/tests/**' -x '**/*.test.js'",
"coverage:all": "npm run coverage -- npm run test:all",
"coverage:unit": "npm run coverage -- npm run test:unit",
"codecov": "codecov --file=coverage/lcov.info -e TRAVIS_NODE_VERSION",
"e2e": "npm run build -- -- testcafe --debug-on-fail --take-snapshot --color -S -s tests/e2e/screenshots ${BROWSER:-chrome}",
"report:ui": "testcafe-blink-diff tests/e2e/screenshots --compare master:dev --force -t 0.10",
"report": "nyc report",
"pretest": "npm run lint"
},
"keywords": [
"testcafe",
"codegen",
"yadda",
"bdd"
],
"files": [
"bin/*",
"lib/*",
"matchers.js"
],
"repository": {
"type": "git",
"url": "https://github.com/tacoss/bdd-tc"
},
"bugs": "https://github.com/tacoss/bdd-tc/issues",
"author": "Alvaro Cabrera <[email protected]> (https://soypache.co)",
"license": "MIT",
"dependencies": {
"chance": "^1.1.3",
"faker": "^5.5.3",
"fs-extra": "^10.0.0",
"glob": "^7.1.3",
"json-schema-faker": "^0.5.0-rc39",
"lodash.template": ">=4.5.0",
"rimraf": "^3.0.0",
"testcafe-blink-diff": "^0.4.9",
"wargs": "^0.9.3",
"yadda": "^2.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.8.2",
"cookie-signature": ">=1.0.4",
"ejs": ">=2.5.5",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"express": ">=3.11.0",
"fresh": ">=0.5.2",
"glob-parent": ">=5.1.2",
"mime": ">=1.4.1",
"minimist": ">=1.2.2",
"mocha": "^10.1.0",
"mock-fs": "^4.14.0",
"moment": ">=2.19.3",
"nyc": "^15.0.0",
"open": ">=6.0.0",
"send": ">=0.11.1",
"testcafe": "^1.8.3",
"testdouble": "^3.9.1",
"tough-cookie": ">=2.3.3",
"uglify-js": ">=2.6.0",
"underscore": ">=1.12.1",
"useragent": ">=2.1.13",
"ws": ">=1.1.5"
}
}