-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
62 lines (62 loc) · 1.34 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
{
"name": "promptly",
"version": "3.2.0",
"description": "Simple command line prompting utility",
"keywords": [
"prompt",
"choose",
"choice",
"cli",
"command",
"line"
],
"author": "André Cruz <[email protected]>",
"homepage": "https://github.com/moxystudio/node-promptly",
"repository": {
"type": "git",
"url": "[email protected]:moxystudio/node-promptly.git"
},
"license": "MIT",
"main": "index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint .",
"test": "jest --env node --coverage --runInBand",
"prerelease": "npm t && npm run lint",
"release": "standard-version",
"postrelease": "git push --follow-tags origin HEAD && npm publish"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"read": "^1.0.4"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"eslint": "^5.3.0",
"eslint-config-moxy": "^7.0.1",
"husky": "^1.3.1",
"jest": "^24.5.0",
"lint-staged": "^8.1.5",
"p-series": "^2.0.0",
"standard-version": "^5.0.1"
}
}