-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.35 KB
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
{
"name": "protractor-workshop-2017",
"version": "1.0.0",
"description": "This is a Workshop about Protractor",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist && rm -rf reports",
"prebuild": "npm run clean",
"build": "tsc",
"lint": "tslint --type-check --project tsconfig.json protractor/**/*.ts test/**/*.ts src/**/*.ts",
"postinstall": "webdriver-manager update --gecko false",
"test": "npm run lint && npm run test:headless",
"test:local": "npm run build && protractor dist/protractor/config.js",
"test:headless": "npm run build && protractor dist/protractor/headless.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salorrego/protractor-workshop-2017.git"
},
"keywords": [
"ui-testing",
"dojo",
"practice",
"protractor"
],
"author": "Salomon Orrego Martinez - sorregom@psl.com.co - salorrego",
"license": "MIT",
"bugs": {
"url": "https://github.com/salorrego/protractor-workshop-2017/issues"
},
"homepage": "https://github.com/salorrego/protractor-workshop-2017#readme",
"dependencies": {
"protractor": "^5.1.2"
},
"devDependencies": {
"@types/jasminewd2": "^2.0.3",
"jasmine-awesome-report": "0.0.2",
"jasmine-spec-reporter": "^4.2.1",
"tslint": "^5.7.0",
"tslint-config-airbnb": "^5.3.0",
"typescript": "^2.5.3"
}
}