-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
102 lines (102 loc) · 2.81 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@npmcli/template-oss",
"version": "4.23.4",
"description": "templated files used in npm CLI team oss projects",
"main": "lib/content/index.js",
"bin": {
"template-oss-apply": "bin/apply.js",
"template-oss-check": "bin/check.js",
"template-oss-release-please": "bin/release-please.js",
"template-oss-release-manager": "bin/release-manager.js"
},
"scripts": {
"lint": "npm run eslint && npm run prettier -- --check",
"lintfix": "npm run eslint -- --fix && npm run prettier -- --write",
"posttest": "npm run lint",
"snap": "tap",
"test": "tap",
"template-oss-apply": "template-oss-apply --force",
"postlint": "template-oss-check",
"postinstall": "template-oss-apply",
"eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
"prettier": "prettier \"**/*.{js,cjs,ts,mjs,jsx,tsx,json}\"",
"test-all": "npm run test -ws -iwr --if-present",
"lint-all": "npm run lint -ws -iwr --if-present"
},
"repository": {
"type": "git",
"url": "git+https://github.com/npm/template-oss.git"
},
"keywords": [
"npm",
"oss"
],
"author": "GitHub Inc.",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.9.1",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.2.2",
"@isaacs/string-locale-compare": "^1.1.0",
"@npmcli/arborist": "^7.2.1",
"@npmcli/git": "^6.0.0",
"@npmcli/map-workspaces": "^4.0.0",
"@npmcli/package-json": "^6.0.0",
"@octokit/rest": "^19.0.4",
"dedent": "^1.5.1",
"diff": "^6.0.0",
"glob": "^10.1.0",
"handlebars": "^4.7.7",
"hosted-git-info": "^8.0.0",
"ini": "^5.0.0",
"json-parse-even-better-errors": "^4.0.0",
"just-deep-map-values": "^1.1.1",
"just-diff": "^6.0.0",
"just-omit": "^2.2.0",
"lodash": "^4.17.21",
"minimatch": "^9.0.2",
"npm-package-arg": "^12.0.0",
"proc-log": "^5.0.0",
"release-please": "16.13.0",
"semver": "^7.3.5",
"undici": "^6.7.0",
"yaml": "^2.1.1"
},
"files": [
"bin/",
"lib/"
],
"devDependencies": {
"@github/prettier-config": "0.0.6",
"@npmcli/eslint-config": "^5.0.0",
"@npmcli/template-oss": "file:./",
"eslint-config-prettier": "^9.1.0",
"nock": "^13.3.8",
"prettier": "^3.2.5",
"tap": "^16.0.0"
},
"tap": {
"timeout": 600,
"nyc-arg": [
"--exclude",
"workspace/test-workspace/**",
"--exclude",
"tap-snapshots/**"
],
"test-ignore": "^(workspace/test-workspace)/",
"node-arg": [
"--no-experimental-fetch"
]
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"publish": true,
"prettier": true
},
"engines": {
"node": "^18.17.0 || >=20.5.0"
},
"workspaces": [
"workspace/test-workspace"
]
}