forked from lowlighter/metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.65 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
{
"name": "metrics",
"version": "3.23.0-beta",
"description": "An infographics generator with 30+ plugins and 200+ options to display stats about your GitHub account and render them as SVG, Markdown, PDF or JSON!",
"main": "index.mjs",
"scripts": {
"start": "node source/app/web/index.mjs",
"test": "jest --runInBand",
"test-contrib": "jest --runInBand ci.test.js --noStackTrace",
"test-presets": "jest --runInBand presets.test.js --noStackTrace",
"test-metrics": "jest --runInBand metrics.test.js",
"build": "node .github/scripts/build.mjs",
"presets": "node .github/scripts/presets_examples.mjs",
"quickstart": "node .github/scripts/quickstart/index.mjs",
"preview": "node .github/scripts/preview.mjs",
"linter": "eslint source/**/*.mjs --quiet",
"format": "eslint source/**/*.mjs --fix",
"dev": "nodemon source/app/web/index.mjs -e mjs,css,ejs,json",
"postinstall": "node node_modules/puppeteer/install.js",
"indepth": "node source/plugins/languages/analyzers.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lowlighter/metrics.git"
},
"author": "lowlighter",
"license": "MIT",
"bugs": {
"url": "https://github.com/lowlighter/metrics/issues"
},
"homepage": "https://github.com/lowlighter/metrics#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@faker-js/faker": "^6.0.0-alpha.3",
"@octokit/graphql": "^4.8.0",
"@octokit/rest": "^18.12.0",
"@primer/css": "^19.8.2",
"@primer/octicons": "^17.0.0",
"axios": "^0.26.1",
"clipboard": "^2.0.10",
"compression": "^1.7.4",
"csso": "^5.0.3",
"ejs": "^3.1.6",
"emoji-name-map": "^1.2.9",
"express": "^4.17.3",
"express-rate-limit": "^6.3.0",
"jimp": "^0.16.1",
"js-yaml": "^4.1.0",
"linguist-js": "^2.4.2",
"marked": "^4.0.12",
"memory-cache": "^0.2.0",
"minimatch": "^5.0.1",
"node-chartist": "^1.0.5",
"node-fetch": "^3.2.3",
"open-graph-scraper": "^4.11.0",
"png-js": "^1.0.0",
"prismjs": "^1.27.0",
"puppeteer": "^13.5.1",
"purgecss": "^4.1.3",
"rss-parser": "^3.12.0",
"sanitize-html": "^2.7.0",
"simple-git": "^3.6.0",
"svgo": "^2.8.0",
"twemoji-parser": "^14.0.0",
"vue": "^2.6.14",
"vue-prism-component": "^1.2.0",
"xml-formatter": "^2.6.1"
},
"devDependencies": {
"eslint": "^8.13.0",
"jest": "^27.5.0",
"libxmljs2": "^0.29.0",
"nodemon": "^2.0.15"
},
"jest": {
"testEnvironment": "node",
"testTimeout": 60000,
"transform": {}
},
"optionalDependencies": {
"gifencoder": "^2.0.1",
"utf-8-validate": "^5.0.8"
}
}