-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.4 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.4 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
84
85
{
"name": "okgit",
"version": "1.1.0",
"description": "CLI for interacting with git services",
"repository": "https://github.com/sri85/okgit",
"bin": {
"okgit": "./dist/cli.js"
},
"files": [
"dist",
"scripts"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"lint": "eslint \"{lib,okgit,tests,integration}/**/*.ts\"",
"prettier": "prettier --write \"**/*.{ts,json,md,scss,yaml,yml}\"",
"build": "rm -rf dist && tsc --project tsconfig.build.json",
"typecheck": "tsc --project tsconfig.json --noEmit",
"test": "cross-env IS_TESTING=TRUE TS_NODE_TRANSPILE_ONLY=0 NO_COLOR= mocha --exclude=integration/*.spec.ts --require ts-node/register tests/unit/*.spec.ts",
"integration": "cross-env-shell IS_TESTING='' mocha --require ts-node/register integration/*.spec.ts --timeout=6000",
"postinstall": "sh scripts/postinstall.sh",
"preuninstall": "sh scripts/uninstall.sh"
},
"keywords": [
"node-cli",
"cli",
"github",
"bitbucket",
"gitlab",
"productivity",
"developer-tools"
],
"dependencies": {
"@hapi/joi": "^17.1.0",
"axios": "^0.21.1",
"cli-color": "^2.0.0",
"cli-table": "^0.3.1",
"commander": "4.1.0",
"dotenv": "8.2.0",
"inquirer": "^7.0.4",
"moment": "^2.24.0",
"remark": "^12.0.0",
"remark-github": "^9.0.0",
"remark-html": "^13.0.2",
"shelljs": "^0.8.3"
},
"author": "Sripathi Pai",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/chai": "^5.2.3",
"@types/cli-color": "^2.0.6",
"@types/cli-table": "^0.3.4",
"@types/commander": "^2.12.5",
"@types/hapi__joi": "^17.1.15",
"@types/inquirer": "^9.0.9",
"@types/mocha": "^10.0.10",
"@types/nock": "^11.1.0",
"@types/node": "^25.6.0",
"@types/proxyquire": "^1.3.31",
"@types/shelljs": "^0.10.0",
"@types/sinon": "^21.0.1",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"chai": "4.2.0",
"cross-env": "7.0.2",
"eslint": "^6.8.0",
"husky": "4.2.3",
"jsdoc": "^3.6.3",
"jsdoc-to-markdown": "^5.0.3",
"lint-staged": "10.0.7",
"mocha": "7.0.1",
"nixt": "^0.5.1",
"nock": "12.0.1",
"prettier": "^1.19.1",
"proxyquire": "2.1.3",
"release-it": "*",
"sinon": "9.0.0",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
}
}