-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 934 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 934 Bytes
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
{
"name": "trello-test-proj",
"version": "0.0.0",
"description": "TrelloTestProj",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/jawadkc/-Test-Automation-Training-Program.git"
},
"author": {
"name": "Jawad Cheema"
},
"scripts": {
"test:local:chrome": "RUN_ENV=dev mocha --reporter-options dot=-,xunit=reports/test_results.xml ./tests/**/*",
"test:local:firefox": "TARGET_BROWSER=firefox RUN_ENV=dev mocha --reporter-options dot=-,xunit=reports/test_results.xml ./tests/**/*",
"test:ci": "RUN_ENV=ci mocha --reporter-options dot=-,xunit=reports/test_results.xml ./tests/**/*"
},
"dependencies": {
"nightwatch": "1.2.4",
"chai": "^4.2.0",
"faker": "^4.1.0",
"mocha": "^6.2.0",
"mocha-multi": "1.1.3",
"supertest": "^4.0.2"
},
"devDependencies": {
"chromedriver": "77.0.0",
"geckodriver": "1.18.0",
"dotenv": "8.2.0"
}
}