-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
119 lines (119 loc) · 3.19 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "npms-analyzer",
"version": "1.0.0",
"description": "The analyzer behind npms.io",
"main": "index.js",
"bin": {
"npms-analyzer": "cli.js"
},
"bugs": "https://github.com/npms-io/npms-analyzer/issues/",
"repository": {
"type": "git",
"url": "git://github.com/npms-io/npms-analyzer.git"
},
"keywords": [
"npm",
"npms",
"npmsearch",
"npmsearch",
"search",
"node",
"module",
"package"
],
"author": "André Cruz <amdfcruz@gmail.com>",
"license": "MIT",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"test": "npm run download-test-fixtures && VCR_MODE=cache mocha",
"test-cov": "npm run download-test-fixtures && VCR_MODE=cache istanbul cover --dir test/coverage _mocha && echo Coverage lies in test/coverage/lcov-report/index.html",
"test-travis": "npm run download-test-fixtures && VCR_MODE=playback istanbul cover _mocha --report lcovonly",
"download-test-fixtures": "test/bin/download-fixtures",
"clean-test-fixtures": "date=\"$(date -R)\" && VCR_MODE=playback mocha && test/bin/clean-fixtures \"$date\""
},
"dependencies": {
"amqplib": "^0.5.0",
"bluebird": "^3.1.1",
"camelcase-keys": "^5.0.0",
"config": "^2.0.1",
"couchdb-force": "^1.0.1",
"couchdb-iterator": "^2.0.0",
"david": "^11.0.0",
"deep-compact": "^1.1.0",
"detect-readme-badges": "^1.3.0",
"detect-repo-changelog": "^1.0.1",
"detect-repo-linters": "^3.1.1",
"detect-repo-test-files": "^1.2.2",
"elasticsearch": "^15.1.1",
"fetch-coverage": "^2.0.1",
"gh-issues-stats": "^3.0.0",
"globby": "^8.0.1",
"got": "^9.3.0",
"hosted-git-info": "^2.1.4",
"humanize-duration": "^3.6.1",
"is-link-working": "^2.1.0",
"is-regular-file": "^1.0.1",
"json5": "^2.0.0",
"load-json-file": "^5.1.0",
"lodash": "^4.17.11",
"moment": "^2.21.0",
"nano": "^7.1.0",
"normalize-package-data": "^2.3.6",
"normalize-value": "~1.0.0",
"obj-flatten": "^2.0.0",
"obj-unflatten": "^1.0.0",
"paper": "^0.11.5",
"php-escape-shell": "^1.0.0",
"pino": "^5.6.1",
"promise-retry": "^1.0.1",
"require-directory": "^2.1.1",
"semver": "^5.1.0",
"serialize-error": "^3.0.0",
"spdx": "^0.5.0",
"spdx-correct": "^3.0.0",
"token-dealer": "^3.0.0",
"weighted-mean": "^1.0.0",
"which": "^1.2.8",
"yargs": "^12.0.2"
},
"optionalDependencies": {
"heapdump": "^0.3.7"
},
"devDependencies": {
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"betray": "^1.3.0",
"chai": "^4.1.2",
"chronokinesis": "^2.0.0",
"eslint": "^5.6.0",
"eslint-config-moxy": "^6.1.1",
"husky": "^1.0.0",
"istanbul": "^0.4.2",
"lint-staged": "^8.0.4",
"mocha": "^5.2.0",
"mock-require": "^3.0.2",
"nock": "^10.0.0",
"sepia": "^2.0.1"
},
"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"
]
},
"engines": {
"node": ">=8.6",
"npm": ">=6"
}
}