-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
97 lines (97 loc) · 2.29 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
{
"name": "guru-cli",
"version": "1.3.0",
"description": "CLI tools for Guru KB (getguru.com)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"guru-cli": "bin/run"
},
"files": [
"dist",
"bin"
],
"scripts": {
"clean": "rimraf dist coverage tmp",
"dev": "ts-node src/cli.ts",
"lint": "eslint \"src/**/*.ts\" --fix",
"test": "jest",
"test:ci": "jest --coverage",
"test:watch": "jest --watch",
"build": "run-s -l clean test tsc",
"build:ci": "tsc",
"build:check": "tsc --noEmit",
"build:watch": "npm run clean && tsc -w",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release",
"qa": "run-s -l lint test clean build:check",
"tsc": "tsc"
},
"keywords": [
"guru",
"cli",
"kb",
"knowledgebase"
],
"author": {
"name": "Dillon Head",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pliancy/guru-cli"
},
"devDependencies": {
"@digitalroute/cz-conventional-changelog-for-jira": "7.4.0",
"@pliancy/eslint-config-ts": "0.1.0",
"@pliancy/semantic-release-config-npm": "2.2.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.6",
"@semantic-release/npm": "9.0.1",
"@types/cli-progress": "3.9.0",
"@types/jest": "29.1.0",
"@types/node": "17.0.21",
"commitizen": "4.2.5",
"cz-conventional-changelog": "3.3.0",
"husky": "8.0.1",
"jest": "29.1.1",
"lint-staged": "13.0.3",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"semantic-release": "19.0.5",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"engines": {
"node": ">=12"
},
"volta": {
"node": "14.20.1"
},
"dependencies": {
"@oclif/core": "1.16.4",
"axios": "0.27.2",
"cac": "6.7.2",
"chalk": "4.1.2",
"cli-progress": "3.9.0",
"conf": "10.2.0",
"search-query-parser": "1.5.5",
"tslib": "2.4.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix"
],
"*.${js,jsx,ts,tsx,json}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira",
"skipScope": false
}
}
}