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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Karrys <luke@lukekarrys.com>2022-03-30 18:32:22 +0300
committerGitHub <noreply@github.com>2022-03-30 18:32:22 +0300
commita59fd2cb863245fce56f96c90ac854e62c5c4d6f (patch)
treef1421497144abae5a2d0190f9d06adc3e4b5da36 /docs/package.json
parentcc0a2ec9999b956ea654deaf68fd49ae4bf1a1c0 (diff)
deps: @npmcli/template-oss@3.2.2 (#4639)
- add some basic tests for docs - make dockhand script work on windows - cleanup main CI to match template-oss - add a git status check for cli ci tests - use resetdeps for ci steps
Diffstat (limited to 'docs/package.json')
-rw-r--r--docs/package.json36
1 files changed, 21 insertions, 15 deletions
diff --git a/docs/package.json b/docs/package.json
index 85a14a269..9bd06f094 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -4,14 +4,13 @@
"version": "1.0.0",
"private": true,
"scripts": {
- "build": "node dockhand",
+ "build": "node bin/dockhand",
"lint": "eslint \"**/*.js\"",
"postlint": "template-oss-check",
"template-oss-apply": "template-oss-apply --force",
"lintfix": "npm run lint -- --fix",
"preversion": "npm test",
- "postversion": "npm publish",
- "prepublishOnly": "git push origin --follow-tags",
+ "postversion": "git push origin --follow-tags",
"snap": "tap",
"test": "tap",
"posttest": "npm run lint"
@@ -24,7 +23,9 @@
"devDependencies": {
"@mdx-js/mdx": "^1.6.22",
"@npmcli/eslint-config": "^3.0.1",
- "@npmcli/template-oss": "3.2.1",
+ "@npmcli/fs": "^2.1.0",
+ "@npmcli/promise-spawn": "^1.3.2",
+ "@npmcli/template-oss": "3.2.2",
"cmark-gfm": "^0.9.0",
"jsdom": "^18.1.0",
"marked-man": "^0.7.0",
@@ -32,26 +33,31 @@
"yaml": "^1.10.0"
},
"author": "GitHub Inc.",
+ "license": "ISC",
"files": [
+ "bin/",
"content/",
- "config.json",
- "dockhand.js",
- "nav.yml",
- "template.html"
+ "nav.yml"
],
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=16.0.0"
+ },
+ "tap": {
+ "statements": 81,
+ "branches": 72,
+ "functions": 80,
+ "lines": 81
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
- "workspaceRepo": false,
"distPaths": [
+ "bin/",
"content/",
- "config.json",
- "dockhand.js",
- "nav.yml",
- "template.html"
+ "nav.yml"
+ ],
+ "ciVersions": [
+ "16"
],
- "version": "3.2.1"
+ "version": "3.2.2"
}
}