generated from alertbox/todomvc-cucumber-protractor
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.5 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
{
"name": "todomvc-cucumber-protracteer",
"description": "Minimalistic template project to kick start Gherkin style E2E tests written in Screenplay pattern using Puppeteer with CucumberJS + Protractor.",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/kosalanuwan/todomvc-cucumber-protracteer",
"keywords": [
"protractor-cucumber-framework",
"test-automation",
"end-to-end-testing",
"starter-kit",
"template-project",
"boilerplate",
"example-code",
"nodejs",
"cucumberjs",
"protractor",
"puppeteer",
"headless-chrome",
"e2e",
"bdd",
"gherkin",
"behavior-driven-development"
],
"author": "Alertbox and the contributors",
"license": "MIT",
"bugs": "https://github.com/kosalanuwan/todomvc-cucumber-protracteer/issues",
"homepage": "https://github.com/kosalanuwan/ttodomvc-cucumber-protracteer#readme",
"engines": {
"node": ">= 10.15",
"yarn": ">= 1.17"
},
"scripts": {
"wd": "webdriver-manager",
"prepare:wd": "yarn wd shutdown && yarn wd update",
"reset": "npx rimraf yarn.lock node_modules/ public/ && yarn cache clean --force && yarn install",
"preinstall": "echo \"WARNING: no pre-install specified\"",
"install": "echo \"WARNING: no install specified. Try start instead\"",
"postinstall": "echo \"WARNING: no post-install specified. Try start instead\"",
"prepare": "echo \"WARNING: no prepare specified. Try start instead\"",
"lint": "eslint .",
"ptor": "protractor",
"pretest": "npx rimraf public/ && npx mkdirp public",
"test:fast": "yarn ptor config/config.headless.js",
"test:direct": "yarn ptor config/config.direct.js",
"test:external": "echo \"WARNING: no test-external specified\"",
"test": "yarn test:fast && yarn test:external",
"posttest": "yarn lint --quiet",
"prestart": "yarn prepare:wd",
"start": "yarn wd start",
"poststart": "echo \"WARNING: no post-start specified\""
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "7.7.4",
"@babel/core": "7.7.4",
"@babel/preset-env": "7.7.4",
"@babel/register": "7.7.4",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"core-js": "3.4.5",
"cucumber": "6.0.5",
"eslint": "6.7.1",
"eslint-plugin-import": "2.18.2",
"protractor": "5.4.2",
"protractor-cucumber-framework": "6.2.0",
"protractor-multiple-cucumber-html-reporter-plugin": "1.8.1",
"puppeteer": "2.0.0"
}
}