-
Notifications
You must be signed in to change notification settings - Fork 167
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "speedlify",
"version": "1.0.0",
"description": "",
"scripts": {
"clean": "rm -rf _data/results/* && rm -rf .log && rm -rf _site",
"test-pages": "node run-tests",
"build": "npx @11ty/eleventy --quiet",
"start": "npx @11ty/eleventy --quiet --serve",
"zip-results": "node zip-results.js",
"build-production": "npm run test-pages && npm run build && npm run zip-results"
},
"keywords": [
"performance",
"lighthouse"
],
"author": {
"name": "Zach Leatherman",
"email": "[email protected]",
"url": "https://zachleat.com/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zachleat/speedlify.git"
},
"bugs": {
"url": "https://github.com/zachleat/speedlify/issues"
},
"homepage": "https://github.com/zachleat/speedlify#readme",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-fetch": "^5.0.0-beta.3",
"byte-size": "^8.1.1",
"cross-zip": "^4.0.1",
"dotenv": "^16.3.1",
"fast-glob": "^3.3.2",
"lodash": "^4.17.21",
"performance-leaderboard": "^11.6.0",
"short-hash": "^1.0.0"
},
"dependencies": {
"chartist": "^0.11.4",
"speedlify-score": "^4.0.1"
}
}