screwdriver-api 7.0.157 → 7.0.159

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +22 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "screwdriver-api",
3
- "version": "7.0.157",
3
+ "version": "7.0.159",
4
4
  "description": "API server for the Screwdriver.cd service",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -14,6 +14,27 @@
14
14
  "functional-dev": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod)' --retry 2 --fail-fast --exit",
15
15
  "functional-beta": "npm run functional-beta-no-workflow && npm run functional-beta-workflow",
16
16
  "functional-beta-no-workflow": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and (not @workflow)' --retry 2 --fail-fast --exit",
17
+ "functional-beta-apitoken": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @apitoken' --retry 2 --fail-fast --exit",
18
+ "functional-beta-artifacts": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @artifacts' --retry 2 --fail-fast --exit",
19
+ "functional-beta-auth": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @auth' --retry 2 --fail-fast --exit",
20
+ "functional-beta-build-cache": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @build-cache' --retry 2 --fail-fast --exit",
21
+ "functional-beta-collections": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @collections' --retry 2 --fail-fast --exit",
22
+ "functional-beta-environments": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @environments' --retry 2 --fail-fast --exit",
23
+ "functional-beta-events": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @events' --retry 2 --fail-fast --exit",
24
+ "functional-beta-executorqueue": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @executorqueue' --retry 2 --fail-fast --exit",
25
+ "functional-beta-gitflow": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @gitflow' --retry 2 --fail-fast --exit",
26
+ "functional-beta-metadata": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @metadata' --retry 2 --fail-fast --exit",
27
+ "functional-beta-pipelinetemplate": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @pipelinetemplate' --retry 2 --fail-fast --exit",
28
+ "functional-beta-pipelinetoken": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @pipelinetoken' --retry 2 --fail-fast --exit",
29
+ "functional-beta-restrict-pr": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @restrict-pr' --retry 2 --fail-fast --exit",
30
+ "functional-beta-sd-cmd": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @sd-cmd' --retry 2 --fail-fast --exit",
31
+ "functional-beta-sd-step": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @sd-step' --retry 2 --fail-fast --exit",
32
+ "functional-beta-secrets": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @secrets' --retry 2 --fail-fast --exit",
33
+ "functional-beta-stage": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @stage' --retry 2 --fail-fast --exit",
34
+ "functional-beta-subscribe": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @subscribe' --retry 2 --fail-fast --exit",
35
+ "functional-beta-templates": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @templates' --retry 2 --fail-fast --exit",
36
+ "functional-beta-trigger": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @trigger' --retry 2 --fail-fast --exit",
37
+ "functional-beta-user-teardown-step": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @user-teardown-step' --retry 2 --fail-fast --exit",
17
38
  "functional-beta-workflow": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @workflow' --retry 2 --fail-fast --exit",
18
39
  "create-test-user": "node -e 'require(\"./features/scripts/create-test-user.js\")()'",
19
40
  "diagrams": "find ./design/diagrams -type f -name \\*.puml -print0 | xargs -0 -n 1 -I DIAGRAM puml generate DIAGRAM -o DIAGRAM.png",