forked from npm/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.22 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
{
"name": "cli",
"version": "1.0.0",
"private": true,
"repository": {
"url": "https://github.com/npm/documentation.git",
"directory": "cli",
"type": "git"
},
"scripts": {
"build": "node bin/build.js",
"lint": "eslint \"**/*.js\"",
"postlint": "template-oss-check",
"template-oss-apply": "template-oss-apply --force",
"lintfix": "npm run lint -- --fix",
"snap": "tap",
"test": "tap",
"posttest": "npm run lint"
},
"dependencies": {
"@octokit/rest": "^19.0.5",
"front-matter": "^4.0.2",
"minimatch": "^5.1.1",
"minipass": "^4.0.0",
"pacote": "^15.0.8",
"proc-log": "^3.0.0",
"semver": "^7.3.8",
"tar": "^6.1.13",
"yaml": "^2.1.3"
},
"devDependencies": {
"@npmcli/eslint-config": "^4.0.1",
"@npmcli/template-oss": "4.11.0",
"tap": "^16.3.2"
},
"author": "GitHub Inc.",
"files": [
"bin/",
"lib/"
],
"engines": {
"node": ">=18.0.0"
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.11.0",
"content": "./scripts/template-oss"
},
"tap": {
"nyc-arg": [
"--exclude",
"tap-snapshots/**"
]
}
}