-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "newman-to-escape",
"version": "1.0.0",
"description": "CLI tool to convert a Newman collection to an Escape YAML hotstart configuration",
"main": "index.js",
"bin": {
"newman-to-escape": "dist/index.js"
},
"scripts": {
"start": "ts-node src/index.ts",
"dev": "ts-node-dev src/index.ts",
"build": "tsc",
"lint": "eslint .",
"watch": "ts-node-dev --respawn --transpile-only src/index.ts -c $COLLECTION -e $ENVIRONMENT"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^20.16.2",
"commander": "^12.1.0",
"graphql": "^16.9.0",
"graphql-tag": "^2.12.6",
"js-yaml": "^4.1.0",
"typescript": "^5.5.4"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/js-yaml": "^4.0.9",
"@types/newman": "^5.3.6",
"eslint": "^9.9.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"globals": "^15.9.0",
"newman": "^6.2.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript-eslint": "^8.3.0"
}
}