-
Notifications
You must be signed in to change notification settings - Fork 170
/
package.json
51 lines (51 loc) · 1.57 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
{
"name": "protractor-typescript-cucumber",
"version": "4.0.0",
"license": "MIT",
"description": "To demostrate protractor cucumber tests for angular/non angular apps with allure report framework",
"homepage": "https://github.com/igniteram/protractor-cucumber-typescript",
"keywords": [
"protractor",
"cucumber",
"typescript",
"angular",
"angularjs",
"testing",
"behaviour driven development",
"bdd",
"selenium",
"webdriverJS",
"gherkin",
"automation testing"
],
"main": "index.js",
"scripts": {
"build": "tsc",
"clean": "rimraf typeScript/",
"clean-build": "npm run clean && npm run build",
"init-contributors": "all-contributors init",
"add-contributors": "all-contributors add",
"generate-contributors": "all-contributors generate",
"test": "tsc ./config/config.ts && protractor ./config/config.js",
"webdriver-update": "webdriver-manager update",
"webdriver-start": "webdriver-manager start"
},
"author": "Ram Pasala <[email protected]>",
"devDependencies": {
"@types/cucumber": "^4.0.4",
"@types/node": "^10.7.1",
"@types/selenium-webdriver": "^3.0.10",
"all-contributors-cli": "^6.1.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"cucumber": "^5.0.3",
"cucumber-html-reporter": "^4.0.3",
"mkdirp": "^0.5.1",
"protractor": "^5.4.2",
"protractor-cucumber-framework": "^6.1.1",
"rimraf": "^2.6.2",
"ts-node": "^8.0.2",
"typescript": "^3.0.1"
},
"repository": "https://github.com/igniteram/protractor-cucumber-typescript"
}