This repository has been archived by the owner on Jul 31, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
68 lines (68 loc) · 2.15 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
{
"name": "postman-bdd",
"version": "5.0.7",
"description": "BDD test framework for Postman and Newman",
"keywords": [
"rest",
"http",
"api",
"postman",
"newman",
"bdd",
"mocha",
"chai",
"superagent",
"supertest",
"test",
"testing"
],
"author": {
"name": "James Messinger",
"url": "http://bigstickcarpet.com"
},
"homepage": "https://bigstickcarpet.github.io/postman-bdd",
"repository": {
"type": "git",
"url": "https://github.com/BigstickCarpet/postman-bdd.git"
},
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib",
"types/index.d.ts"
],
"scripts": {
"lint": "eslint lib test --fix",
"build": "simplifyify lib/index.js --outfile dist/postman-bdd.js --standalone postmanBDD --bundle --debug --minify && copy /Y dist\\*.* dist\\v5",
"test": "npm run tape && npm run newman && npm run lint && tsc types/index.d.ts",
"cover": "istanbul cover tape \"test/**/*.spec.js\" tap-spec && npm run newman",
"tape": "tape \"test/**/*.spec.js\" | tap-spec",
"newman": "newman run test/newman/postman_bdd_collection.json -r cli,html --reporter-html-export test/newman/report.html --ignore-redirects",
"newman-local": "newman run test/newman/postman_bdd_collection.json -e test/newman/postman_bdd_localhost_environment.json -r cli,html --reporter-html-export test/newman/report.html --ignore-redirects",
"start": "npm run build -- --watch & http-server -c-1",
"upgrade": "npm-check -u",
"bump": "bump --prompt --grep dist/* dist/v5/* --tag --push --all",
"release": "npm run upgrade && npm run build && npm test && npm run bump && npm publish"
},
"dependencies": {
"chai": "^4.1.2",
"cookiejar": "^2.1.1"
},
"devDependencies": {
"codacy-coverage": "^2.0.3",
"coveralls": "^3.0.0",
"eslint": "^4.15.0",
"eslint-config-modular": "^4.1.1",
"http-server": "^0.11.1",
"istanbul": "^0.4.2",
"newman": "^3.9.2",
"npm-check": "^5.5.2",
"simplifyify": "^4.0.0",
"tap-spec": "4.1.1",
"tape": "^4.8.0",
"tv4": "^1.3.0",
"typescript": "^2.6.2",
"version-bump-prompt": "^4.0.0",
"xml2js": "^0.4.19"
}
}