Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mock_data.js « plugins « source_viewer « components « vue_shared « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5455479ec71e849b31273e2393effed91748d50b (plain)
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
export const PACKAGE_JSON_FILE_TYPE = 'package_json';

export const PACKAGE_JSON_CONTENT = '{ "dependencies": { "@babel/core": "^7.18.5" } }';

export const COMPOSER_JSON_EXAMPLES = {
  packagist: '{ "require": { "composer/installers": "^1.2" } }',
  drupal: '{ "require": { "drupal/bootstrap": "3.x-dev" } }',
  withoutLink: '{ "require": { "drupal/erp_common": "dev-master" } }',
};

export const GEMSPEC_FILE_TYPE = 'gemspec';

export const GODEPS_JSON_FILE_TYPE = 'godeps_json';

export const GEMFILE_FILE_TYPE = 'gemfile';

export const PODSPEC_JSON_FILE_TYPE = 'podspec_json';

export const PODSPEC_JSON_CONTENT = `{
    "dependencies": {
        "MyCheckCore": [
        ]
    },
    "subspecs": [
      {
        "dependencies": {
          "AFNetworking/Security": [
          ]
        }
      }
    ]
  }`;

export const COMPOSER_JSON_FILE_TYPE = 'composer_json';