-
-
Notifications
You must be signed in to change notification settings - Fork 298
/
package.json
104 lines (104 loc) · 2.18 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
103
104
{
"name": "np",
"version": "10.0.7",
"description": "A better `npm publish`",
"license": "MIT",
"repository": "sindresorhus/np",
"funding": "https://github.com/sindresorhus/np?sponsor=1",
"type": "module",
"bin": "./source/cli.js",
"engines": {
"node": ">=18",
"npm": ">=9",
"git": ">=2.11.0",
"yarn": ">=1.7.0",
"pnpm": ">=8"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"source"
],
"keywords": [
"cli-app",
"cli",
"npm",
"publish",
"git",
"push",
"version",
"bump",
"commit"
],
"dependencies": {
"chalk": "^5.3.0",
"chalk-template": "^1.1.0",
"cosmiconfig": "^8.3.6",
"del": "^7.1.0",
"escape-goat": "^4.0.0",
"escape-string-regexp": "^5.0.0",
"execa": "^8.0.1",
"exit-hook": "^4.0.0",
"github-url-from-git": "^1.5.0",
"hosted-git-info": "^7.0.1",
"ignore-walk": "^6.0.4",
"import-local": "^3.1.0",
"inquirer": "^9.2.15",
"is-installed-globally": "^1.0.0",
"is-interactive": "^2.0.0",
"is-scoped": "^3.0.0",
"issue-regex": "^4.1.0",
"listr": "^0.14.3",
"listr-input": "^0.2.1",
"log-symbols": "^6.0.0",
"meow": "^13.2.0",
"new-github-release-url": "^2.0.0",
"npm-name": "^8.0.0",
"onetime": "^7.0.0",
"open": "^10.0.4",
"p-memoize": "^7.1.1",
"p-timeout": "^6.1.2",
"path-exists": "^5.0.0",
"pkg-dir": "^8.0.0",
"read-package-up": "^11.0.0",
"read-pkg": "^9.0.1",
"rxjs": "^7.8.1",
"semver": "^7.6.0",
"symbol-observable": "^4.0.0",
"terminal-link": "^3.0.0",
"update-notifier": "^7.0.0"
},
"devDependencies": {
"@sindresorhus/is": "^6.2.0",
"@types/semver": "^7.5.8",
"ava": "^6.1.2",
"common-tags": "^1.8.2",
"esmock": "^2.6.4",
"fs-extra": "^11.2.0",
"map-obj": "^5.0.2",
"sinon": "^17.0.1",
"strip-ansi": "^7.1.0",
"tempy": "^3.1.0",
"write-package": "^7.0.1",
"xo": "^0.57.0"
},
"ava": {
"files": [
"!test/fixtures",
"!test/_helpers"
],
"environmentVariables": {
"FORCE_HYPERLINK": "1",
"HOME": "/tmp",
"GIT_AUTHOR_NAME": "test",
"GIT_COMMITTER_NAME": "test",
"GIT_AUTHOR_EMAIL": "[email protected]",
"GIT_COMMITTER_EMAIL": "[email protected]"
},
"nodeArguments": [
"--loader=esmock",
"--no-warnings=ExperimentalWarning"
]
}
}