forked from postmanlabs/postman-collection
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.44 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.44 KB
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
{
"name": "postman-collection",
"description": "Enables developers to use a unified Postman Collection format Object across projects",
"author": "Postman Labs <help@getpostman.com>",
"version": "3.4.8",
"keywords": [
"postman"
],
"license": "Apache-2.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/postmanlabs/postman-collection.git"
},
"directories": {
"doc": "docs",
"example": "examples",
"lib": "lib",
"test": "test"
},
"scripts": {
"build-docs": "node npm/build-docs.js",
"build-schema": "node npm/build-schema.js",
"build-wiki": "node npm/build-wiki.js",
"publish-wiki": "node npm/publish-wiki.js",
"publish-docs": "node npm/publish-docs.js",
"test": "node npm/test.js",
"test-system": "node npm/test-system.js",
"test-browser": "node npm/test-browser.js",
"test-lint": "node npm/test-lint.js",
"test-unit": "node npm/test-unit.js"
},
"dependencies": {
"escape-html": "1.0.3",
"file-type": "3.9.0",
"http-reasons": "0.1.0",
"iconv-lite": "0.4.24",
"liquid-json": "0.3.1",
"lodash": "4.17.11",
"marked": "0.6.2",
"mime-format": "2.0.0",
"mime-types": "2.1.24",
"postman-url-encoder": "1.0.2",
"sanitize-html": "1.20.1",
"semver": "6.1.0",
"uuid": "3.3.2"
},
"devDependencies": {
"async": "2.6.2",
"browserify": "16.2.3",
"btoa": "1.2.1",
"chai": "4.2.0",
"chalk": "2.4.2",
"dependency-check": "3.3.0",
"eslint": "5.16.0",
"eslint-plugin-jsdoc": "5.0.2",
"eslint-plugin-lodash": "5.1.0",
"eslint-plugin-mocha": "5.3.0",
"eslint-plugin-security": "1.4.0",
"istanbul": "0.4.5",
"js-yaml": "3.13.1",
"jsdoc": "3.6.2",
"jsdoc-to-markdown": "5.0.0",
"karma": "3.1.4",
"karma-browserify": "6.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"mocha": "6.1.4",
"mustache": "3.0.1",
"parse-gitignore": "1.0.1",
"postman-jsdoc-theme": "0.0.3",
"postman-request": "2.88.1-postman.10",
"puppeteer": "1.17.0",
"require-all": "3.0.0",
"schema-compiler": "0.0.3",
"shelljs": "0.8.3",
"strip-json-comments": "3.0.1"
},
"homepage": "https://github.com/postmanlabs/postman-collection#readme",
"bugs": {
"url": "https://github.com/postmanlabs/postman-collection/issues"
},
"greenkeeper": {
"ignore": [
"file-type"
]
}
}