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

npm_package_json.json « json_schemas « validators « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 01bd874d21462b5c9cacf65bc5919020ac1cd37f (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
{
  "description": "NPM package json metadata",
  "type": "object",
  "properties": {
    "name": { "type": "string" },
    "version": { "type": "string" },
    "dist": {
      "type": "object",
      "properties": {
        "tarball": { "type": "string" },
        "shasum": { "type": "string" }
      },
      "additionalProperties": true,
      "required": [
        "tarball",
        "shasum"
      ]
    }
  },
  "additionalProperties": true,
  "required": [
    "name",
    "version",
    "dist"
  ]
}