-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "Postman-Newman",
"version": "1.0.0",
"description": "Api Automation Test using Postman and Newman",
"main": "newman.js",
"scripts": {
"test:dev": "node newman.js",
"start-slack:dev": "node newman-slack.js",
"test:qa": "node newman.js --env qa",
"start-slack:qa": "node newman-slack.js --env qa",
"test:prod": "node newman.js --env prod",
"start-slack:prod": "node newman-slack.js --env prod",
"postReport": "node postReport.js",
"lint-fix": "eslint . --fix",
"lint": "eslint .",
"crypto": "node ./docs/encrypt-decrypt.js"
},
"keywords": [
"Postman",
"Newman",
"Api Automation Test"
],
"author": "Ian Oroceo",
"license": "ISC",
"bugs": {
"url": "https://github.com/ianoroceo/Postman-Newman/issues"
},
"homepage": "https://github.com/ianoroceo/Postman-Newman#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ianoroceo/Postman-Newman.git"
},
"dependencies": {
"app-root-path": "^3.0.0",
"globe": "^0.3.1",
"newman": "^5.1.2",
"newman-reporter-htmlextra": "^1.17.3",
"yargs": "^15.4.1"
},
"devDependencies": {
"axios": "^0.21.1",
"crypto-js": "^4.1.1",
"dotenv": "^10.0.0",
"eslint": "^7.31.0",
"eslint-config-google": "^0.14.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"form-data": "^4.0.0",
"fs": "^0.0.1-security",
"path": "^0.12.7",
"pretty-ms": "^7.0.1"
}
}