-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.08 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.08 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
{
"name": "zombieplus",
"version": "1.0.0",
"description": "projeto de testes automatizados com nigthwatch",
"main": "index.js",
"scripts": {
"test:login": ".\\node_modules\\.bin\\nightwatch.cmd --group login",
"test:nologin": ".\\node_modules\\.bin\\nightwatch.cmd --skipgroup login",
"test:smoke": ".\\node_modules\\.bin\\nightwatch.cmd --tag smoke",
"stage:smoke": ".\\node_modules\\.bin\\nightwatch.cmd --tag smoke --env=stage",
"test:notag": ".\\node_modules\\.bin\\nightwatch.cmd --skiptags smoke,404",
"test": ".\\node_modules\\.bin\\nightwatch.cmd",
"test:ci": "./node_modules/.bin/nightwatch --env=headless"
},
"keywords": [
"qaninja",
"nodejs",
"webdriver",
"nightwatch",
"chromdriver",
"geckodriver"
],
"author": "Fernando Papito",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-es2015": "^6.24.1",
"chromedriver": "^80.0.1",
"faker": "^4.1.0",
"geckodriver": "^1.19.0",
"nightwatch": "^1.2.4",
"pg": "^7.12.1"
}
}