2020-07-09 18:33:41 +08:00
|
|
|
{
|
|
|
|
"name": "github-readme-stats",
|
|
|
|
"version": "1.0.0",
|
2022-10-13 16:27:19 +08:00
|
|
|
"description": "Dynamically generate stats for your GitHub readme",
|
|
|
|
"keywords": [
|
|
|
|
"github-readme-stats",
|
|
|
|
"readme-stats",
|
|
|
|
"cards",
|
|
|
|
"card-generator"
|
|
|
|
],
|
|
|
|
"main": "src/index.js",
|
2022-09-24 16:20:54 +08:00
|
|
|
"type": "module",
|
2022-10-13 16:27:19 +08:00
|
|
|
"homepage": "https://github.com/anuraghazra/github-readme-stats",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/anuraghazra/github-readme-stats/issues"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/anuraghazra/github-readme-stats.git"
|
|
|
|
},
|
2020-07-09 18:33:41 +08:00
|
|
|
"scripts": {
|
2022-09-24 16:20:54 +08:00
|
|
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
|
|
|
|
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
|
|
|
|
"test:update:snapshot": "node --experimental-vm-modules node_modules/jest/bin/jest.js -u",
|
2022-10-01 19:59:02 +08:00
|
|
|
"test:e2e": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest.e2e.config.js",
|
2020-08-03 01:17:34 +08:00
|
|
|
"theme-readme-gen": "node scripts/generate-theme-doc",
|
2022-03-19 16:56:50 +08:00
|
|
|
"preview-theme": "node scripts/preview-theme",
|
2022-10-02 17:05:13 +08:00
|
|
|
"close-stale-theme-prs": "node scripts/close-stale-theme-prs",
|
2022-09-06 15:09:45 +08:00
|
|
|
"generate-langs-json": "node scripts/generate-langs-json",
|
2022-10-07 18:33:54 +08:00
|
|
|
"format": "prettier --write .",
|
|
|
|
"format:check": "prettier --check .",
|
|
|
|
"prepare": "husky install"
|
2020-07-09 18:33:41 +08:00
|
|
|
},
|
|
|
|
"author": "Anurag Hazra",
|
|
|
|
"license": "MIT",
|
|
|
|
"devDependencies": {
|
2022-10-01 19:59:02 +08:00
|
|
|
"@actions/core": "^1.9.1",
|
2020-08-03 01:17:34 +08:00
|
|
|
"@actions/github": "^4.0.0",
|
2022-09-24 16:20:54 +08:00
|
|
|
"@testing-library/dom": "^8.17.1",
|
|
|
|
"@testing-library/jest-dom": "^5.16.5",
|
2021-12-13 22:42:03 +08:00
|
|
|
"@uppercod/css-to-object": "^1.1.1",
|
2023-01-28 22:22:02 +08:00
|
|
|
"axios-mock-adapter": "^1.21.2",
|
2021-11-05 23:31:46 +08:00
|
|
|
"color-contrast-checker": "^2.1.0",
|
|
|
|
"hjson": "^3.2.2",
|
2022-10-07 18:33:54 +08:00
|
|
|
"husky": "^8.0.0",
|
2022-09-24 20:10:06 +08:00
|
|
|
"jest": "^29.0.3",
|
|
|
|
"jest-environment-jsdom": "^29.0.3",
|
2022-03-19 16:56:50 +08:00
|
|
|
"js-yaml": "^4.1.0",
|
2022-10-07 18:33:54 +08:00
|
|
|
"lint-staged": "^13.0.3",
|
2021-11-05 23:31:46 +08:00
|
|
|
"lodash.snakecase": "^4.1.1",
|
2022-03-16 05:18:43 +08:00
|
|
|
"parse-diff": "^0.7.0",
|
|
|
|
"prettier": "^2.1.2"
|
2020-07-09 18:33:41 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-03-16 05:18:43 +08:00
|
|
|
"axios": "^0.24.0",
|
2020-07-24 21:26:26 +08:00
|
|
|
"dotenv": "^8.2.0",
|
2020-07-27 16:39:35 +08:00
|
|
|
"emoji-name-map": "^1.2.8",
|
2020-07-31 16:07:39 +08:00
|
|
|
"github-username-regex": "^1.0.0",
|
2022-09-24 16:20:54 +08:00
|
|
|
"upgrade": "^1.1.0",
|
2020-07-27 16:39:35 +08:00
|
|
|
"word-wrap": "^1.2.3"
|
2020-07-23 15:35:50 +08:00
|
|
|
},
|
2022-10-07 18:33:54 +08:00
|
|
|
"lint-staged": {
|
|
|
|
"*.{js,css,md}": "prettier --write"
|
2020-07-09 18:33:41 +08:00
|
|
|
}
|
|
|
|
}
|