forked from postmanlabs/npm-cli-login
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 963 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 963 Bytes
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
{
"name": "@kenan/npm-cli-login",
"version": "5.0.2",
"description": "Fork of npm-cli-login",
"author": "Postman Team <help@getpostman.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/kenany/npm-cli-login.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": "20 || 22 || >=24"
},
"main": "index.js",
"bin": {
"npm-cli-login": "bin/npm-cli-login.js"
},
"files": [
"bin",
"lib",
"CHANGELOG.md",
"index.js",
"LICENSE.txt"
],
"scripts": {
"release": "semantic-release",
"test": "mocha tests"
},
"dependencies": {
"npm-profile": "^12.0.1"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"chai": "6.2.2",
"conventional-changelog-conventionalcommits": "9.3.1",
"mocha": "11.7.5",
"semantic-release": "25.0.3"
}
}