-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.23 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
{
"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"
],
"lint-staged": {
"*.{js,jsx}": [
"npm run lint",
"eslint --fix",
"prettier --write",
"npm run test"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"lint": "eslint lib",
"prettier": "prettier \"**/*.{json,md,scss,yaml,yml}\"",
"build": "rm -rf dist && babel lib okgit -d dist",
"test": "cross-env IS_TESTING=TRUE mocha --exclude=integration/*.spec.js --require babel-core/register tests/unit/*.spec.js",
"integration": "cross-env-shell IS_TESTING='' mocha --require babel-core/register integration/*.spec.js --timeout=6000",
"docs": "jsdoc2md lib -d docs",
"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",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.26.0",
"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",
"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"
}
}