-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 924 Bytes
/
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
{
"name": "check-npm-client",
"description": "check or ensure which npm client(yarn/npm) is currently used",
"keywords": [
"npm",
"yarn",
"npm scripts",
"npm client",
"ensure npm client",
"npm user agent"
],
"version": "1.1.1",
"author": "aprilandjan",
"license": "MIT",
"files": [
"bin",
"lib"
],
"engines": {
"node": ">=7.6.0"
},
"bin": {
"check-npm-client": "./bin/cli.js"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "mocha",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/aprilandjan/check-npm-client"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"chalk": "^3.0.0",
"debug": "^4.1.1",
"npm-config-user-agent-parser": "^1.0.0"
},
"devDependencies": {
"mocha": "^6.2.2"
}
}