-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.55 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
{
"name": "psi-svg",
"version": "1.0.8",
"description": "Generates a SVG of a given url's PageSpeed Insights statistics via a http endpoint or a cli command.",
"main": "dist/presentation/cli/index.js",
"scripts": {
"start": "npm run build && node dist/presentation/cli/index.js -s",
"build": "tsc && tsc-alias",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nico-i/psi-svg.git"
},
"keywords": [
"page",
"speed",
"pagespeed",
"lighthouse",
"chrome",
"statistics",
"analysis",
"svg",
"a11y",
"cli",
"generator",
"insights",
"google",
"server",
"node"
],
"author": "Nico Ismaili",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nico-i/pagespeed-insight-gen/issues"
},
"homepage": "https://github.com/nico-i/pagespeed-insight-gen#readme",
"dependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.9.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsdom": "^22.1.0",
"svg.js": "^2.7.1",
"svgo": "^3.1.0",
"winston": "^3.11.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/preset-env": "^7.23.7",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"bin": {
"psi-svg": "dist/presentation/cli/index.js"
}
}