-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
114 lines (114 loc) · 3.31 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "serenity-protractor-cucumber",
"version": "2.0.0",
"description": "To demostrate protractor cucumber tests for angular/non angular apps with serenity report framework",
"types": "./**/*.d.ts",
"scripts": {
"build": "tsc",
"setup": "webdriver-manager --ignore_ssl update --standalone=false",
"lint": "eslint . --ext ts",
"lint:fix": "eslint . --ext ts --fix",
"clean": "del-cli target && del-cli transform",
"commit": "git-cz",
"report": "serenity-bdd run --cacheDir ./lib/serenity-cli",
"report:jenkins": "node ./jenkins.report.js",
"e2e": "protractor launch --cucumberOpts.tags ~@manual --cucumberOpts.tags ~@ignore",
"test": "npm run clean && npm run lint && npm run e2e && npm run report",
"encrypt-password": "ts-node src/utils/password.handler"
},
"repository": {
"type": "git",
"url": "https://github.com/abhinaba-ghosh/protractor-cucumber-serenity-typescript-starter.git"
},
"author": "Abhinaba Ghosh <askabhinaba@gmail.com>",
"keywords": [
"protractor",
"cucumber",
"typescript",
"angular",
"angularjs",
"testing",
"behaviour driven development",
"bdd",
"serenity",
"webdriverJS",
"gherkin",
"automation testing"
],
"dependencies": {
"@serenity-js/assertions": "2.2.2",
"@serenity-js/console-reporter": "2.2.2",
"@serenity-js/core": "2.2.2",
"@serenity-js/cucumber": "2.2.2",
"@serenity-js/protractor": "2.2.2",
"@serenity-js/rest": "2.2.2",
"@serenity-js/serenity-bdd": "2.3.0",
"chai": "3.1.0",
"cucumber": "6.0.5",
"mssql": "6.1.0",
"protractor": "5.4.2",
"protractor-axe-html-report-plugin": "1.1.1",
"protractor-css-booster": "2.0.0",
"protractor-react-selector": "2.2.3"
},
"devDependencies": {
"@types/chai": "3.5.0",
"@types/chai-arrays": "1.0.2",
"@types/chai-as-promised": "0.0.29",
"@types/chai-string": "1.4.1",
"@types/crypto-js": "3.1.43",
"@types/cucumber": "6.0.1",
"@types/mssql": "6.0.0",
"@types/node": "10.7.1",
"@types/underscore": "1.9.2",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"chai-arrays": "2.0.0",
"chai-as-promised": "7.1.1",
"chai-files": "1.4.0",
"chai-smoothie": "0.3.2",
"chai-string": "1.2.0",
"chalk": "^4.0.0",
"commitizen": "^4.0.5",
"crypto-js": "3.1.9-1",
"cucumber-junit-convert": "1.1.0",
"cz-conventional-changelog": "2.1.0",
"del-cli": "3.0.0",
"dotenv-safe": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-unicorn": "^18.0.1",
"failsafe": "^1.0.0",
"gherkin-lint": "3.3.6",
"html-dnd": "1.2.0",
"husky": "3.0.0",
"lint-staged": "9.2.0",
"log4js": "5.2.2",
"prettier": "2.0.5",
"pretty-quick": "1.11.1",
"ts-node": "^8.9.1",
"tsconfig-paths": "^3.8.0",
"typescript": "3.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"pretty-quick --staged"
],
"*.ts": [
"npm run lint"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}