forked from npms-io/npms-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.88 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
{
"name": "npms-analyzer",
"version": "0.1.0",
"description": "The analyzer behind npms.io",
"main": "index.js",
"scripts": {
"lint": "eslint '{*.js,lib/**/*.js,test/**/*.js}' --ignore-pattern=test/coverage",
"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 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"download-test-fixtures": "test/bin/download-fixtures",
"clean-test-fixtures": "date=\"$(date -R)\" && VCR_MODE=playback mocha && test/bin/clean-fixtures \"$date\""
},
"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 <[email protected]>",
"license": "MIT",
"dependencies": {
"amqplib": "^0.5.0",
"bignumber.js": "^4.0.0",
"bluebird": "^3.1.1",
"camelcase-keys": "^4.0.0",
"config": "^1.19.0",
"couchdb-force": "^1.0.1",
"couchdb-iterator": "^2.0.0",
"david": "^11.0.0",
"deep-compact": "^1.1.0",
"detect-readme-badges": "^1.2.1",
"detect-repo-changelog": "^1.0.1",
"detect-repo-linters": "^2.0.0",
"detect-repo-test-files": "^1.0.0",
"elasticsearch": "^13.0.0-beta2",
"fetch-coverage": "^1.0.3",
"gh-issues-stats": "^2.0.4",
"glob": "^7.0.0",
"got": "^6.2.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": "^0.5.0",
"load-json-file": "^2.0.0",
"lodash": "^4.0.0",
"moment": "^2.21.0",
"nano": "^6.2.0",
"normalize-package-data": "^2.3.6",
"normalize-value": "~1.0.0",
"nsp": "^2.2.0",
"obj-flatten": "^2.0.0",
"obj-unflatten": "^1.0.0",
"php-escape-shell": "^1.0.0",
"pino": "^3.0.0",
"promise-retry": "^1.0.1",
"require-directory": "^2.1.1",
"semver": "^5.1.0",
"serialize-error": "^2.0.0",
"spdx": "^0.5.0",
"spdx-correct": "^2.0.0",
"token-dealer": "^2.1.0",
"weighted-mean": "^1.0.0",
"which": "^1.2.8",
"yargs": "^7.0.0"
},
"optionalDependencies": {
"heapdump": "^0.3.7"
},
"devDependencies": {
"@satazor/eslint-config": "^3.0.0",
"betray": "^1.3.0",
"chai": "^3.5.0",
"chronokinesis": "^1.1.0",
"coveralls": "^2.11.6",
"eslint": "^3.0.0",
"istanbul": "^0.4.2",
"mocha": "^3.0.1",
"mock-require": "^2.0.0",
"nock": "^9.0.0",
"sepia": "^2.0.1"
},
"bin": {
"npms-analyzer": "cli.js"
}
}