screwdriver-api 7.0.160 → 7.0.162

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 +2 -27
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "screwdriver-api",
3
- "version": "7.0.160",
3
+ "version": "7.0.162",
4
4
  "description": "API server for the Screwdriver.cd service",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -11,33 +11,8 @@
11
11
  "debug": "node --nolazy ./bin/server",
12
12
  "profile": "node --prof ./bin/server",
13
13
  "functional": "cucumber-js --format=progress --tags '(not @ignore) and (not @beta)' --retry 2 --fail-fast --exit",
14
+ "functional-beta": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod)' --retry 2 --fail-fast --exit",
14
15
  "functional-dev": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod)' --retry 2 --fail-fast --exit",
15
- "functional-beta": "npm run functional-beta-no-workflow && npm run functional-beta-workflow",
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",
38
- "functional-beta-workflow": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @workflow' --retry 2 --fail-fast --exit",
39
- "functional-beta-part1": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @part1' --retry 2 --fail-fast --exit",
40
- "functional-beta-part2": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @part2' --retry 2 --fail-fast --exit",
41
16
  "create-test-user": "node -e 'require(\"./features/scripts/create-test-user.js\")()'",
42
17
  "diagrams": "find ./design/diagrams -type f -name \\*.puml -print0 | xargs -0 -n 1 -I DIAGRAM puml generate DIAGRAM -o DIAGRAM.png",
43
18
  "semantic-release": "semantic-release pre && npm publish && semantic-release post"