-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.74 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
{
"name": "serenityjs-cucumber-protractor-standalone",
"version": "1.0.0",
"description": "Standalone testing suite",
"main": "index.js",
"scripts": {
"clean": "rimraf target",
"lint": "tslint --config tslint.json --project ./tsconfig.json --format stylish",
"pretest": "serenity update",
"pree2e": "npm run lint && npm run webdriver:update -- --standalone",
"e2e": "protractor ./protractor.conf.js",
"e2e-single": "protractor ./protractor.conf.js --cucumberOpts.name",
"report": "serenity run",
"test": "failsafe clean lint e2e report open-report",
"webdriver:update": "webdriver-manager update",
"proxy": "webdriver-manager start",
"open-report": "opn target/site/serenity/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpiralOutDotEu/SerenityJS-Cucumber-Protractor-StandAlone.git"
},
"keywords": [
"BDD",
"SerenityJS",
"CucumberJS",
"Protractor",
"Black-box test"
],
"author": "Nikos Koumbakis",
"license": "MIT",
"bugs": {
"url": "https://github.com/SpiralOutDotEu/SerenityJS-Cucumber-Protractor-StandAlone/issues"
},
"homepage": "https://github.com/SpiralOutDotEu/SerenityJS-Cucumber-Protractor-StandAlone#readme",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/chai-as-promised": "^7.1.0",
"@types/node": "^8.0.40",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-smoothie": "^0.3.2",
"cucumber": "^1.3.2",
"npm-failsafe": "^0.2.1",
"open": "0.0.5",
"opn-cli": "^3.1.0",
"protractor": "^5.1.2",
"rimraf": "^2.6.2",
"serenity-cli": "^0.7.0",
"serenity-js": "^1.9.2",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typescript": "^2.5.3"
},
"dependencies": {}
}