-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.38 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
56
57
58
59
{
"name": "jsuperman",
"version": "1.0.8",
"description": "A library to run many collections with newman",
"main": "build/main.js",
"repository": "https://github.com/DumiJDev/jsuperman.git",
"author": "DumiJDev",
"license": "MIT",
"private": false,
"scripts": {
"dev": "npx nodemon",
"build": "rimraf ./build && tsc",
"start": "node build/main"
},
"bin": {
"jsuperman": "./bin/jsuperman",
"clark": "./bin/jsuperman"
},
"dependencies": {
"allure-commandline": "^2.23.0",
"axios": "^1.4.0",
"chalk": "4.1.2",
"ejs": "^3.1.9",
"express": "^4.18.2",
"figlet": "^1.6.0",
"fs-extra": "^11.1.1",
"newman": "^5.3.2",
"newman-reporter-allure": "^2.4.0",
"node-cron": "^3.0.2",
"nodemailer": "^6.9.4",
"tree-kill": "^1.2.2",
"yaml": "^2.3.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/ejs": "^3.1.2",
"@types/express": "^4.17.17",
"@types/figlet": "^1.5.6",
"@types/fs-extra": "^11.0.1",
"@types/newman": "^5.3.3",
"@types/node": "^20.3.3",
"@types/node-cron": "^3.0.8",
"@types/nodemailer": "^6.4.9",
"@types/yargs": "^17.0.24",
"nodemon": "^2.0.22",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"keywords": [
"newman",
"newman-run",
"cli",
"postman",
"testing",
"observability",
"allure"
]
}