-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
77 lines (77 loc) · 1.78 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
{
"name": "npms-cli",
"description": "Search https://npms.io/ from the command line!",
"version": "1.6.0",
"author": "John Flesch <[email protected]> (https://fles.ch)",
"bin": {
"npms": "cli.js"
},
"bugs": "https://github.com/npms-io/npms-cli/issues",
"homepage": "https://github.com/npms-io/npms-cli",
"keywords": [
"modules",
"node",
"node_modules",
"npm",
"npms",
"npms.io",
"package",
"search"
],
"license": "MIT",
"main": "cli.js",
"repository": {
"type": "git",
"url": "git+https://github.com/npms-io/npms-cli.git"
},
"engines": {
"node": ">= 8"
},
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"test": "mocha",
"test-cov": "istanbul cover --dir test/coverage _mocha && echo Coverage lies in test/coverage/lcov-report/index.html",
"test-travis": "istanbul cover _mocha --report lcovonly && cat ./coverage/lcov.info"
},
"dependencies": {
"chalk": "^2.4.1",
"cli-table3": "^0.5.0",
"got": "^9.3.0",
"moment": "^2.22.2",
"opn": "^5.4.0",
"truncate": "^2.0.1",
"update-notifier": "^2.5.0",
"yargs": "^12.0.2"
},
"devDependencies": {
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"betray": "^1.4.0",
"chai": "^4.2.0",
"eslint": "^5.8.0",
"eslint-config-moxy": "^6.1.1",
"husky": "^1.1.2",
"istanbul": "^0.4.5",
"lint-staged": "^8.0.4",
"mocha": "^5.2.0",
"nock": "^10.0.1",
"strip-ansi": "^5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}