-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1.21 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
{
"name": "qa-postman-api",
"version": "1.0.0",
"description": "Automação de testes de API com Postman e Newman - Práticas de mercado",
"private": true,
"scripts": {
"test": "newman run collections/user_flow.json -e environments/dev.json --reporters cli --insecure",
"test:security": "newman run collections/security.js -e environments/dev.json --reporters cli --insecure",
"test:dev": "newman run collections/user_flow.json -e environments/dev.json --reporters cli --insecure",
"test:all": "npm run test && npm run test:security",
"test:html": "newman run collections/user_flow.json -e environments/dev.json --reporters cli,json --reporter-json-export reports/results.json --insecure",
"clean": "rm -rf reports/* node_modules package-lock.json",
"lint": "eslint helpers/ tests/",
"lint:fix": "eslint helpers/ tests/ --fix",
"format": "prettier --write 'helpers/**/*.js' 'tests/**/*.js'",
"prepare": "husky install"
},
"devDependencies": {
"newman": "^5.3.2",
"chai": "^4.3.10",
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"@commitlint/config-conventional": "^18.4.3",
"@commitlint/cli": "^18.4.3"
}
}