-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.6 KB
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
{
"name": "samdev_pulse",
"version": "2.0.0",
"description": "The perfect README generator for GitHub profiles",
"main": "src/server.js",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "node src/server.js",
"dev": "node --watch src/server.js",
"lint": "node scripts/quality.js lint",
"format": "node scripts/quality.js format",
"format:check": "node scripts/quality.js format:check",
"check": "npm run lint && npm run test:unit",
"audit": "npm audit --audit-level=high",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test:visual": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/renderers/__tests__/visual-workflow.test.js",
"previews": "node scripts/generate-previews.js",
"test:deployment": "node test-deployment.js",
"test:unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"keywords": [
"github",
"readme",
"profile",
"svg"
],
"author": "",
"license": "MIT",
"dependencies": {
"@vercel/analytics": "^1.6.1",
"dotenv": "^17.2.3",
"express": "^4.22.2",
"express-rate-limit": "^7.5.1",
"mongoose": "^9.1.6"
},
"devDependencies": {
"@testing-library/dom": "^9.3.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.4.1",
"jsdom": "^22.1.0"
},
"overrides": {
"js-yaml": "^4.2.0",
"form-data": "^4.0.6"
}
}