forked from arjunjh10/cucumberjs-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.07 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.07 KB
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
{
"name": "cucumberjs-typescript-sample-project",
"version": "1.0.0",
"description": "e2e project framework to get started",
"scripts": {
"clean": "rm -rf dist && rm -rf .cache",
"compile": "parcel build --target node --no-source-maps -d dist ./tests/**/*.ts",
"build": "npm run clean && npm run compile",
"test:server": "./node_modules/.bin/cucumber-js ./tests -r dist/step_definitions/*.js --fail-fast",
"cucumber": "./node_modules/.bin/cucumber-js ./tests",
"cucumber:parallel": "ts-node --project tests/tsconfig.json tests/scripts/cucumber-runner",
"lint": "tslint -p tests",
"generateTestReport": "node ./tests/support/reporter.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arjunjh10/cucumberjs-typescript"
},
"keywords": [
"cucumberjs",
"cucumberjs typescript",
"selenium webdriver",
"testing",
"e2e functional test automation",
"bdd",
"behavioural driven development",
"gherkin",
"example test automation project"
],
"author": "Arjun Jhawar <arjun.jhawar@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/arjunjh10/cucumberjs-typescript/blob/master/README.md",
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/cucumber": "4.0.4",
"@types/fs-extra": "^5.0.4",
"@types/lodash": "4.14.85",
"@types/make-dir": "1.0.3",
"@types/node": "8.10.7",
"@types/node-fetch": "1.6.7",
"@types/selenium-webdriver": "3.0.8",
"@types/winston": "^2.4.4",
"@types/yargs": "11.0.0",
"chromedriver": "2.41.0",
"geckodriver": "1.12.2",
"dotenv-safe": "^4.0.4",
"fs-extra": "7.0.0",
"lodash": "^4.17.13",
"node-fetch": "2.0.0",
"parcel-bundler": "1.10.3",
"ts-node": "4.1.0",
"tslint": "5.9.1",
"tslint-eslint-rules": "^4.1.1",
"typescript": "2.6.2",
"winston": "2.4.0"
},
"dependencies": {
"browserstack-local": "1.3.0",
"chai": "^4.0.2",
"cucumber": "5.0.1",
"cucumber-html-reporter": "4.0.2",
"make-dir": "^1.0.0",
"selenium-webdriver": "3.6.0",
"yargs": "9.0.1"
}
}