-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·32 lines (32 loc) · 1.33 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
{
"name": "zombieplus",
"version": "1.0.1",
"description": "Automoted Tests Project with NodeJS, NightWatchJs and Docker.",
"main": "tests/login.test.js",
"scripts": {
"test": "./node_modules/.bin/nightwatch",
"test:stage": "./node_modules/.bin/nightwatch --env=stage",
"test:firefox": "./node_modules/.bin/geckodriver--env=firefox",
"test:headless": "./node_modules/.bin/nightwatch --skipgroup login --env=headless",
"test:login": "./node_modules/.bin/nightwatch --group login",
"test:nologin": "./node_modules/.bin/nightwatch --skipgroup login",
"test:sign-up": "./node_modules/.bin/nightwatch --group sign-up",
"test:nosign-up": "./node_modules/.bin/nightwatch --skipgroup sign-up",
"test:search": "./node_modules/.bin/nightwatch --group search",
"test:nosearch": "./node_modules/.bin/nightwatch --skipgroup search",
"start": "nodemon tests/login.test.js"
},
"author": "@wendreof",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-es2015": "^6.24.1",
"chromedriver": "^78.0.0",
"faker": "^4.1.0",
"geckodriver": "^1.19.1",
"nightwatch": "^1.2.4",
"nodemon": "^1.19.4",
"pg": "^7.12.1"
}
}