-
Notifications
You must be signed in to change notification settings - Fork 125
/
package.json
97 lines (97 loc) · 3.87 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
{
"name": "interactive-landscape",
"version": "1.0.657",
"description": "Visualization tool for building interactive landscapes",
"engines": {
"npm": ">=3",
"node": ">= 10.5"
},
"scripts": {
"eslint": "eslint src tools specs netlify",
"autocrop-images": "node tools/autocropImages",
"dev": "yarn server",
"open:src": "yarn server",
"server": "node server.js",
"landscapes": "node tools/landscapes.js",
"update-github-colors": "curl https://raw.githubusercontent.com/Diastro/github-colors/master/github-colors.json > tools/githubColors.json",
"fetch": "node tools/validateLandscape && node tools/checkWrongCharactersInFilenames && node tools/addExternalInfo.js && yarn yaml2json",
"fetchAll": "LEVEL=complete yarn fetch",
"light-update": "(rm /tmp/landscape.json || true) && node tools/validateLandscape && yarn remove-quotes && LEVEL=crunchbase node tools/addExternalInfo.js && yarn prune && yarn yaml2json && node tools/updateTimestamps",
"update": "(rm /tmp/landscape.json || true) && node tools/validateLandscape && yarn remove-quotes && LEVEL=medium node tools/addExternalInfo.js && yarn prune && yarn check-links && yarn yaml2json && node tools/updateTimestamps",
"yaml2json": "node tools/generateJson.js",
"remove-quotes": "node tools/removeQuotes",
"prune": "node tools/pruneExtraEntries",
"check-links": "node tools/checkLinks",
"precommit": "yarn fetch",
"start-ci": "yarn exec bash -c \"(node tools/distServer.js &) && sleep 10\"",
"stop-old-ci": "node tools/stopOldDistServer.js",
"stop-ci": "yarn exec bash -c \"kill -9 `cat /tmp/ci.pid` >/dev/null 2>/dev/null && rm /tmp/ci.pid \"",
"integration-test": "jest --runInBand --reporters=jest-standard-reporter",
"test": "jest",
"check-landscape": "node tools/checkLandscape",
"render-landscape": "node tools/renderLandscape",
"funding": "node tools/fundingForMasterBranch",
"prepare-landscape": "node tools/prepareLandscape.js && node tools/renderItems.js",
"setup-robots": "node tools/sitemap && node tools/addRobots",
"build": "yarn fetch && yarn prepare-landscape && node tools/renderAcquisitions && yarn setup-robots && yarn export-functions && yarn stop-old-ci && yarn start-ci && node tools/parallelWithRetry integration-test check-landscape render-landscape funding && yarn stop-ci",
"export-functions": "node ./tools/exportFunctions",
"latest": "yarn",
"reset-tweet-count": "node tools/resetTweetCount.js",
"prepublish": "cp yarn.lock _yarn.lock",
"postpublish": "rm _yarn.lock || true",
"preview": "yarn fetch && yarn prepare-landscape && yarn export-functions"
},
"author": "CNCF",
"license": "Apache-2.0",
"dependencies": {
"@vercel/ncc": "^0.34.0",
"anchorme": "^2.1.2",
"axios": "^0.27.2",
"bluebird": "3.7.2",
"change-case": "^4.1.2",
"cheerio": "^1.0.0-rc.11",
"colors": "1.4.0",
"debug": "^4.3.4",
"eslint": "latest",
"event-emitter": "0.3.5",
"expect-puppeteer": "^6.1.0",
"feed": "^4.2.2",
"format-number": "3.0.0",
"get-contrast-ratio": "^0.2.1",
"git-branch": "2.0.1",
"iframe-resizer": "^4.3.2",
"jest": "^28.1.0",
"jest-cli": "^28.1.0",
"jest-standard-reporter": "^2.0.0",
"js-yaml": "^4.1.0",
"json2csv": "^5.0.7",
"lodash": "^4.17.21",
"node-emoji": "^1.11.0",
"oauth-1.0a": "^2.2.6",
"puppeteer": "^14.2.1",
"query-string": "^7.1.1",
"relative-date": "1.1.3",
"sanitize-html": "^2.7.0",
"showdown": "^2.1.0",
"sitemap": "^7.1.1",
"svg-autocrop": "^2.0.41",
"traverse": "0.6.6",
"yarn": "^1.22.18"
},
"keywords": [
"landscape",
"interactive",
"map",
"categories",
"crunchbase",
"github",
"ecosystem",
"stars",
"funding"
],
"repository": {
"type": "git",
"url": "https://github.com/cncf/landscapeapp"
},
"packageManager": "yarn@3.2.1"
}