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

package.json « stringify-package « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c0e5622b4756281f02c4d8ab0c073d2b0259eebc (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
35
36
37
38
{
  "name": "stringify-package",
  "version": "1.0.1",
  "description": "stringifies npm-written json files",
  "main": "index.js",
  "files": [
    "index.js"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/npm/stringify-package.git"
  },
  "keywords": [
    "npm",
    "json",
    "stringify",
    "package.json"
  ],
  "author": "Kat Marchán <kzm@zkat.tech>",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/npm/stringify-package/issues"
  },
  "homepage": "https://github.com/npm/stringify-package",
  "scripts": {
    "prerelease": "npm t",
    "release": "standard-version -s",
    "postrelease": "npm publish",
    "postpublish": "git push --follow-tags",
    "pretest": "standard",
    "test": "tap -J --coverage --100 test/*.js"
  },
  "devDependencies": {
    "standard": "11",
    "standard-version": "4",
    "tap": "12"
  }
}