-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.56 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
{
"name": "convert-postman-jmeter",
"version": "2.3.1",
"description": "Convert files Postman Project to JMeter Project",
"main": "./lib/convert-postman-jmeter",
"scripts": {
"start": "node ./bin/convert-postman-jmeter",
"test": "./node_modules/.bin/nyc ./node_modules/.bin/mocha test",
"lint": "./node_modules/.bin/eslint ./lib --format junit --output-file ./reports/eslint/eslint.xml"
},
"files": [
"lib",
"bin",
"templates"
],
"keywords": [
"converter",
"jmeter",
"postman",
"cli",
"command"
],
"author": "chancaysergio@gmail.com",
"license": "MIT",
"preferGlobal": true,
"os": [
"darwin",
"linux",
"win32"
],
"homepage": "https://github.com/sercheo87/convert-postman-jmeter#readme",
"repository": {
"type": "git",
"url": "https://github.com/sercheo87/convert-postman-jmeter"
},
"bugs": {
"url": "https://github.com/sercheo87/convert-postman-jmeter/issues"
},
"bin": {
"convert-postman-jmeter": "./bin/convert-postman-jmeter"
},
"devDependencies": {
"chai": "^4.4.1",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"github-release-notes": "^0.17.3",
"mocha": "^10.4.0",
"mocha-junit-reporter": "^2.2.1",
"nyc": "^15.1.0",
"string-contains": "^0.1.0"
},
"dependencies": {
"mustache": "^4.2.0",
"string-contains": "^0.1.0",
"yargs": "^17.7.2"
}
}