-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
83 lines (83 loc) · 1.94 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
{
"name": "yargs-interactive",
"version": "0.0.0-semantic-release",
"description": "Build interactive command line tools without worring to parse the arguments (or ask them).",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"lint": "eslint src test --fix",
"test": "jest --collectCoverage",
"publish-coverage": "cat ./coverage/lcov.info | coveralls",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nanovazquez/yargs-interactive.git"
},
"keywords": [
"yargs",
"interactive",
"cli",
"arguments",
"args",
"prompt",
"inquirer"
],
"author": "nanovazquez",
"license": "MIT",
"bugs": {
"url": "https://github.com/nanovazquez/yargs-interactive/issues"
},
"homepage": "https://github.com/nanovazquez/yargs-interactive#readme",
"dependencies": {
"inquirer": "^7.0.0",
"yargs": "^14.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/inquirer": "^6.5.0",
"@types/jest": "^24.0.18",
"@types/node": "12.7.2",
"@types/yargs": "^13.0.2",
"babel-eslint": "^10.0.2",
"coveralls": "^3.0.6",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.2.1",
"eslint-config-google": "^0.13.0",
"husky": "^3.0.4",
"jest": "^24.9.0",
"jest-matcher-one-of": "^1.0.2",
"lint-staged": "^9.2.3",
"proxyquire": "^2.1.3",
"semantic-release": "^15.13.24"
},
"engines": {
"node": ">=8",
"npm": ">=6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npx lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js}": [
"npm run lint",
"git add"
]
}
}