-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.21 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
{
"name": "inquirer-maxlength-input-prompt",
"version": "1.0.2",
"description": "Input prompt with max length for inquirer",
"main": "index.js",
"repository": "https://github.com/jwarby/inquirer-maxlength-input-prompt",
"author": "James Warwood <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"chalk": "^2.3.1",
"inquirer": "^5.1.0",
"lodash.invoke": "^4.5.2",
"lodash.isfunction": "^3.0.9",
"lodash.partialright": "^4.2.1"
},
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"inquirer",
"prompt",
"maxlength",
"length",
"character",
"counter"
],
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"ansi-style-parser": "^2.0.0",
"conventional-changelog-cli": "^1.3.15",
"coveralls": "^3.0.0",
"eslint": "^4.18.1",
"eslint-plugin-node": "^6.0.1",
"husky": "^4.2.5",
"jest": "^25.4.0",
"lint-staged": "^10.2.11",
"lodash.assign": "^4.2.0",
"lodash.last": "^3.0.0",
"lodash.partial": "^4.2.1",
"lodash.repeat": "^4.1.0",
"mock-stdin": "^0.3.1",
"prettier": "^2.0.5",
"strip-ansi": "^4.0.0"
},
"scripts": {
"changelog": "conventional-changelog -p jquery -i CHANGELOG.md -s",
"eslint": "eslint index.js '__tests__/**/*.js'",
"prettier": "prettier index.js '__tests__/**/*.js'",
"test": "jest --coverage"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": ["eslint", "prettier --write"]
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"es6": true,
"node": true
},
"rules": {
"node/no-missing-require": "error",
"node/no-unsupported-features": "error"
},
"plugins": ["node"]
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true
},
"commitlint": {
"extends": ["@commitlint/config-conventional"],
"rules": {
"header-max-length": [1, "always", 80],
"subject-case": [0, "never"]
}
},
"jest": {
"testPathIgnorePatterns": [".*/mocks", ".*/helpers"]
},
"files": ["index.js", "yarn.lock"]
}