-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.86 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.86 KB
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
{
"name": "@owvy/aka",
"version": "2.2.3",
"description": "Aka is a friendly CLI to run sharable alias & bash commands.",
"author": "Owvy Labs",
"homepage": "https://github.com/owvy/aka",
"license": "ISC",
"repository": {
"type": "git",
"url": "git@github.com:owvy/aka.git"
},
"keywords": [
"terminal",
"sharable",
"alias",
"bash",
"shortcut",
"shell",
"args",
"command",
"cli",
"typescript"
],
"engines": {
"node": ">=8"
},
"preferGlobal": true,
"files": [
"dist"
],
"bin": {
"aka": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"cmd": "node ./dist/index.js",
"format": "prettier --write ./src",
"lint": "eslint './src/*/**/*.{js,ts,tsx}' --fix",
"release": "npm run build && npm publish --public=access && git push --follow-tags",
"patch-release": "npm version patch && npm run release",
"minor-release": "npm version minor && npm run release",
"major-release": "npm version major && npm run release"
},
"devDependencies": {
"@types/command-line-usage": "^5.0.1",
"@types/lodash": "^4.14.162",
"@types/shelljs": "^0.8.8",
"@types/signale": "^1.4.1",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.12.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"dependencies": {
"chalk": "^4.1.0",
"command-line-usage": "^6.1.0",
"commander": "^6.2.0",
"configstore": "^5.0.1",
"lodash": "^4.17.20",
"shelljs": "^0.8.4",
"signale": "^1.4.0",
"yaml": "^1.10.0"
},
"lint-staged": {
"./src/*/**/*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}