-
Notifications
You must be signed in to change notification settings - Fork 206
/
Copy pathpackage.json
73 lines (73 loc) · 1.85 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
{
"name": "github-profile-3d-contrib",
"version": "0.9.0",
"description": "Generate profile 3D Contributions",
"main": "dist/index.js",
"scripts": {
"start": "node .",
"dev": "ts-node src/index.ts",
"dev:watch": "ts-node-dev --respawn src/index.ts",
"clean": "rimraf dist/*",
"tsc": "tsc",
"build": "npm-run-all clean tsc && ncc build dist0/index.js --license licenses.txt",
"check-types": "tsc --noEmit",
"eslint": "eslint src/**/*.ts",
"eslint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write 'src/**/*.{js,ts,json}'",
"lint": "npm-run-all eslint check-types",
"lint:fix": "npm-run-all eslint:fix check-types format",
"test": "jest",
"test:coverage": "jest --collect-coverage"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"^.+\\.(ts|js)$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"testMatch": [
"**/spec/*.(spec|test).(ts|js)"
]
},
"keywords": [],
"author": "yoshi389111",
"license": "MIT",
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.13.9",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/ncc": "^0.38.3",
"axios-mock-adapter": "^2.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "8.3.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.2.4"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"axios": "^1.8.2",
"d3": "^7.9.0",
"jsdom": "^26.0.0"
},
"pre-commit": [
"test",
"lint:fix"
]
}