-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 1.1 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
{
"name": "f5-postman-workflows",
"version": "1.1.0",
"description": "This extension is intended to be used with Postman. The purpose of this extension is to implement common functions that simplify building Collections that implement complex workflows",
"main": "src/f5-postman-workflows.js",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xHiteshPatel/f5-postman-workflows.git"
},
"keywords": [
"postman",
"newman",
"f5"
],
"author": "Hitesh Patel <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/0xHiteshPatel/f5-postman-workflows/issues"
},
"homepage": "https://github.com/0xHiteshPatel/f5-postman-workflows#readme",
"scripts": {
"doc": "jsdoc src/f5-postman-workflows.js ../README.md -d docs -c build/jsdoc_conf.json --verbose",
"globals": "node build/gen_postman_globals.js",
"build": "npm run globals; npm run doc",
"pretest": "npm run build",
"test": "node test/test-driver.js"
},
"dependencies": {
"jsdoc": "^3.4.3",
"uglify-js": "^2.8.7"
}
}