-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
101 lines (101 loc) · 3.09 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@apideck/postman-to-k6",
"version": "1.13.0",
"description": "Convert a Postman collection to k6 JavaScript",
"keywords": [
"k6",
"postman",
"loadtest",
"load-test",
"load-testing",
"server-load",
"performance"
],
"homepage": "https://github.com/apideck-libraries/postman-to-k6#readme",
"bugs": {
"url": "https://github.com/apideck-libraries/postman-to-k6/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apideck-libraries/postman-to-k6.git"
},
"license": "Apache-2.0",
"author": "",
"main": "bin/postman-to-k6.js",
"bin": {
"postman-to-k6": "bin/postman-to-k6.js"
},
"files": [
"bin/**/*",
"lib/**/*",
"scripts/**/*"
],
"directories": {
"bin": "bin",
"lib": "lib"
},
"scripts": {
"bundle": "node scripts/bundle.js",
"lint:fix": "yarn lint --fix",
"lint": "eslint .",
"format": "prettier -c ./lib/**/*.js ./test/**/*.js",
"format:fix": "yarn format --write",
"postinstall": "node scripts/bundle.js",
"test": "npm-run-all test-unit test-com test-int",
"test-com": "cross-env NODE_PATH=lib:test ava test/com/**/*.js",
"test-hoc": "cross-env NODE_PATH=lib:test ava",
"test-int": "cross-env NODE_PATH=lib:test ava test/int/*.js",
"test-unit": "cross-env NODE_PATH=lib:test ava test/unit/**/*.js",
"test-jest": "jest --colors --verbose --reporters=default --collectCoverage --no-cache",
"prepare": "husky install",
"release": "yarn format && yarn lint && yarn bundle && npx np --branch main"
},
"dependencies": {
"ajv": "^6.12.6",
"aws4": "^1.11.0",
"browserify": "^16.5.2",
"chai": "^4.3.4",
"cheerio": "1.0.0-rc.6",
"commander": "^2.20.3",
"crypto-js": "^4.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.11.0",
"fs-extra": "^8.1.0",
"lodash": "^4.17.21",
"oauth-1.0a": "^2.2.6",
"papaparse": "^5.3.1",
"pkginfo": "^0.4.1",
"postman-collection": "^4.4.1",
"postman-collection-transformer": "^4.1.8",
"prettier": "^1.19.1",
"spo-gpo": "^1.0.0",
"strip-json-comments": "^3.1.1",
"urijs": "^1.19.11",
"uuid": "^3.4.0",
"verror": "^1.10.0",
"xml2js": "^0.5.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/register": "^7.15.3",
"@babel/runtime": "^7.15.3",
"ava": "^2.4.0",
"cross-env": "^7.0.3",
"husky": "^7.0.4",
"jest": "^29.7.0",
"mock-require": "^3.0.3",
"npm-run-all": "^4.1.5",
"sinon": "^7.5.0",
"snazzy": "^8.0.0",
"standard": "^14.3.1"
},
"engines": {
"node": ">=18"
},
"preferGlobal": true,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}