-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
{
"name": "github-stats-card",
"version": "1.0.0",
"description": "a minimal but inclusive github stats badge",
"type": "module",
"license": "MIT",
"author": {
"name": "Bart6114",
"email": "[email protected]"
},
"scripts": {
"lint": "eslint .",
"fix": "eslint --fix .",
"prepare": "ncc build src/index.ts -o dist --source-map --license LICENSE",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"fast-xml-parser": "^4.2.5",
"graphql-request": "^6.1.0",
"yaml": "^2.3.1"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.46.0",
"eslint-config-standard-with-typescript": "^36.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}