This repository has been archived by the owner on Aug 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
75 lines (75 loc) · 2.22 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
{
"name": "code-gov-harvester",
"version": "1.0.7",
"description": "Code.gov code.json harvester and data manipulation tool",
"scripts": {
"debug": "node --inspect ./scripts/index/index.js",
"start": "node ./scripts/index/index.js",
"index-repos": "node ./scripts/index/repo/index.js",
"index-terms": "node ./scripts/index/term/index.js",
"index-issues": "node ./scripts/index/issues/index.js",
"security-check": "npm audit",
"test": "./node_modules/.bin/nyc mocha --opts tests/mocha.opts tests",
"test-console": "./node_modules/.bin/nyc mocha --opts tests/mocha.opts.console tests",
"licenses": "license-checker --json --relativeLicensePath --out dependency_licenses.json",
"lint": "./node_modules/.bin/eslint .",
"lint-fix": "./node_modules/.bin/eslint --fix .",
"postinstall": "opencollective-postinstall",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"collective": {
"url": "https://opencollective.com/webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gsa/code-gov-harvester.git"
},
"keywords": [
"code.gov",
"government",
"data-harvester",
"open-data",
"gov",
"open-government",
"harvester"
],
"author": "Froilan Irizarry",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/gsa/code-gov-harvester/issues"
},
"homepage": "https://github.com/gsa/code-gov-harvester#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^7.1.0",
"mocha-junit-reporter": "^1.18.0",
"nock": "^12.0.3",
"nyc": "^15.0.0"
},
"dependencies": {
"@code.gov/code-gov-adapter": "^1.1.8",
"@code.gov/code-gov-integrations": "^1.0.4",
"@code.gov/code-gov-validator": "^1.0.4",
"JSONStream": "^1.3.5",
"cfenv": "^1.2.2",
"dotenv": "^6.1.0",
"encoding": "^0.1.12",
"eslint-plugin-mocha": "^5.3.0",
"json2csv": "^4.3.1",
"jsonfile": "^5.0.0",
"latinize": "^0.4.0",
"license-checker": "^25.0.1",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.1",
"nodemailer": "^6.0.0",
"snyk": "^1.316.1",
"winston": "^3.1.0"
},
"engines": {
"node": "^10.12.0",
"npm": "^6.4.1"
},
"snyk": true
}