-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.13 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
{
"name": "cucumber-protractor",
"version": "1.0.0",
"author": {
"name": "Abraão Alves",
"url": "https://abraaoalves.github.io"
},
"license": "MIT",
"description": "Cucumber+Protractor+Typescript boilerplate",
"dependencies": { },
"devDependencies": {
"browser-sync": "^2.11.0",
"chai": "^3.4.1",
"chai-as-promised":"^5.1.0",
"cucumber": "~1.3.1",
"phantomjs": "~2.1.7",
"protractor": "^4.0.9",
"protractor-cucumber-framework": "~0.6.0",
"typescript": "~1.8.10",
"tsd": "~0.6.5",
"ts-node": "~0.7.2",
"shelljs": "~0.7.0",
"concurrently": "~2.2.0"
},
"scripts": {
"start": "concurrently \"npm run browsersync:start\" \"npm run start-webdriver\"",
"browsersync:start":"browser-sync start --server --portSpecify 3000 --no-open --files '*.html' ",
"start-webdriver": "webdriver-manager update --standalone && webdriver-manager start",
"test:e2e": "protractor protractor.conf.js",
"test:e2e:debug": "protractor protractor.conf.js --directConnect --elementExplorer ",
"postinstall": "webdriver-manager update & tsd install"
}
}