-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.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
{
"name": "e2ejs",
"version": "1.0.4",
"author": "Mateus Constanzo <[email protected]>",
"repository": "https://github.com/mateusconstanzo/e2ejs",
"homepage": "https://github.com/mateusconstanzo/e2ejs",
"license": "ISC",
"description": "",
"keywords": [
"protractor",
"cucumber",
"typescript"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tslint --project ./src/tsconfig.json",
"build": "tsc -p ./src/",
"build:watch": "tsc -p ./src/ -w",
"clean": "",
"clean-build": "npm run clean && npm run build",
"test": "protractor dist/config/config.js",
"webdriver-update": "webdriver-manager update",
"webdriver-start": "webdriver-manager start"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/chai-as-promised": "^7.1.0",
"@types/cucumber": "^4.0.1",
"@types/dotenv": "^4.0.2",
"@types/fs-extra": "^5.0.1",
"@types/node": "^8.9.5",
"@types/selenium-webdriver": "^3.0.8",
"@types/yargs": "^11.0.0",
"tslint": "^5.10.0"
},
"dependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"cucumber": "^4.0.1",
"cucumber-html-reporter": "^3.0.4",
"dotenv": "^5.0.1",
"fs-extra": "^5.0.0",
"protractor": "^5.3.0",
"protractor-cucumber-framework": "^4.2.0",
"protractor-multiple-cucumber-html-reporter-plugin": "^1.6.1",
"selenium-webdriver": "^4.0.0-alpha.1",
"ts-node": "^3.3.0",
"typescript": "^2.7.2",
"yargs": "^11.0.0"
}
}