forked from npm/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.67 KB
/
package.json
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@npmcli/docs",
"description": "The npm cli documentation",
"version": "1.0.0",
"private": true,
"main": "lib/index.js",
"scripts": {
"lint": "eslint \"**/*.js\"",
"postlint": "template-oss-check",
"template-oss-apply": "template-oss-apply --force",
"lintfix": "node .. run lint -- --fix",
"snap": "tap",
"test": "tap",
"posttest": "node .. run lint",
"build": "node bin/build.js"
},
"repository": {
"type": "git",
"url": "https://github.com/npm/cli.git",
"directory": "docs"
},
"devDependencies": {
"@isaacs/string-locale-compare": "^1.1.0",
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.8.0",
"front-matter": "^4.0.2",
"ignore-walk": "^6.0.0",
"jsdom": "^20.0.1",
"mkdirp": "^1.0.4",
"rehype-stringify": "^9.0.3",
"remark-gfm": "^3.0.1",
"remark-man": "^8.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"tap": "^16.0.1",
"unified": "^10.1.2",
"yaml": "^2.1.3"
},
"author": "GitHub Inc.",
"license": "ISC",
"files": [
"bin/",
"lib/"
],
"engines": {
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
},
"tap": {
"timeout": 600,
"nyc-arg": [
"--exclude",
"tap-snapshots/**"
]
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"ciVersions": "latest",
"engines": "^14.17.0 || ^16.13.0 || >=18.0.0",
"version": "4.8.0",
"content": "../scripts/template-oss/index.js",
"workspaceRepo": {
"add": {
".github/workflows/ci-{{ pkgNameFs }}.yml": "ci-npmcli-docs.yml"
}
}
}
}