forked from postmanlabs/newman-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "newman-dashboard",
"version": "0.0.1",
"description": "A WebUI companion for Newman to control, view and debug runs.",
"scripts": {
"postinstall": "node npm/post-install.js",
"test": "npm run test:lint && npm run test:suite ",
"test:lint": "eslint . && node npm/test-lint.js",
"test:suite": "npm run test:unit && npm run test:integration",
"test:unit": "node npm/test-unit.js",
"test:integration": "node npm/test-integration.js",
"coverage": "node npm/coverage.js",
"dev:dashboard": "nodemon ./dashboard/server/index.js",
"dev:client": "next ./frontend",
"build": "node npm/build.js"
},
"keywords": [
"newman",
"postman",
"api",
"testing",
"ci",
"rest-client",
"rest",
"webui",
"dashboard",
"debug"
],
"author": "elit-altum",
"license": "Apache-2.0",
"engines": {
"node": ">= 10"
},
"devDependencies": {
"editorconfig": "^0.15.3",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.0"
},
"dependencies": {
"async": "^3.2.1"
}
}