-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.76 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
{
"name": "paket-kontrol",
"version": "0.0.8",
"main": "bin/cli.js",
"directories": {
"lib": "bin/"
},
"bin": "./bin/cli.js",
"license": "MIT",
"type": "module",
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^5.2.0",
"meow": "^11.0.0",
"node-fetch": "^3.3.0",
"semver": "^7.3.8",
"update-notifier": "^6.0.2"
},
"scripts": {
"test": "xo",
"fix:test": "xo --fix",
"build": "rimraf bin/ && tsc",
"postversion": "yarn build && git push origin main --tags && yarn publish --access public"
},
"engines": {
"node": ">=10",
"yarn": ">=1.22.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ibodev1/paket-kontrol.git"
},
"homepage": "https://github.com/ibodev1/paket-kontrol",
"bugs": {
"url": "https://github.com/ibodev1/paket-kontrol/issues"
},
"keywords": [
"npm",
"package",
"package.json",
"paket kontrol",
"npm version",
"version"
],
"author": "İbrahim Ödev <[email protected]>",
"description": "Projenizde yüklü npm paketlerinin versiyonlarının güncel olup olmadığını kontrol etmeniz için yardımcı cli pakedi.",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/meow": "^6.0.0",
"@types/node-fetch": "^2.6.2",
"@types/update-notifier": "^6.0.2",
"rimraf": "^4.1.2",
"typescript": "^4.9.5",
"xo": "^0.53.1"
},
"xo": {
"space": true,
"rules": {
"n/prefer-global/process": "off",
"unicorn/text-encoding-identifier-case": "off",
"unicorn/no-array-callback-reference": "off",
"no-negated-condition": "off",
"unicorn/prefer-top-level-await": "off",
"unicorn/prevent-abbreviations": "off",
"no-await-in-loop": "off"
}
}
}