forked from postmanlabs/postman-collection-transformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2 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
{
"name": "postman-collection-transformer",
"version": "2.6.0",
"description": "Perform rapid conversation and validation of JSON structure between Postman Collection Format v1 and v2",
"main": "index.js",
"scripts": {
"test": "node npm/test.js",
"test-lint": "node npm/test-lint.js",
"test-browser": "node npm/test-browser.js",
"test-schema": "node npm/test-schema.js",
"test-unit": "node npm/test-unit.js",
"test-system": "node npm/test-system.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/postmanlabs/postman-collection-transformer.git"
},
"directories": {
"lib": "lib",
"bin": "bin"
},
"keywords": [
"postman",
"collection",
"json",
"format",
"converter",
"transformer"
],
"author": "Postman Labs <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/postmanlabs/postman-collection-transformer/issues"
},
"homepage": "https://github.com/postmanlabs/postman-collection-transformer#readme",
"engines": {
"node": ">=4"
},
"devDependencies": {
"async": "2.6.1",
"browserify": "16.2.2",
"chai": "4.1.2",
"chalk": "2.4.1",
"eslint": "4.19.1",
"eslint-plugin-jsdoc": "3.7.1",
"eslint-plugin-lodash": "2.7.0",
"eslint-plugin-mocha": "4.12.1",
"eslint-plugin-security": "1.4.0",
"js-yaml": "3.12.0",
"karma": "2.0.4",
"karma-browserify": "5.3.0",
"karma-chrome-launcher": "2.2.0",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"mocha": "5.2.0",
"nsp": "2.6.3",
"nyc": "12.0.2",
"packity": "0.3.2",
"parse-gitignore": "0.5.1",
"pretty-ms": "3.2.0",
"recursive-readdir": "2.2.2",
"require-all": "3.0.0",
"shelljs": "0.8.2",
"superagent": "3.8.3",
"tv4": "1.3.0",
"watchify": "3.11.0"
},
"dependencies": {
"commander": "2.16.0",
"inherits": "2.0.3",
"intel": "1.2.0",
"lodash": "4.17.10",
"semver": "5.5.0",
"strip-json-comments": "2.0.1"
}
}