-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "curso-protractor-tat",
"version": "1.0.0",
"description": "Projeto para o curso de Protractor da Escola TAT",
"main": "index.js",
"scripts": {
"lint": "npx standard",
"lint:fix": "npx standard --fix",
"pretest": "webdriver-manager update",
"test": "npm run test:chrome && npm run test:firefox",
"test:chrome": "protractor configurations/chromeConfig.js",
"test:firefox": "protractor configurations/firefoxConfig.js"
},
"standard":{
"globals": [
"beforeAll",
"beforeEach",
"browser",
"by",
"describe",
"element",
"expect",
"it"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/wlsf82/curso-protractor-tat.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wlsf82/curso-protractor-tat/issues"
},
"homepage": "https://github.com/wlsf82/curso-protractor-tat#readme",
"devDependencies": {
"protractor": "^7.0.0",
"protractor-helper": "^4.1.9",
"standardjs": "^1.0.0-alpha"
}
}