This repository has been archived by the owner on Aug 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 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
{
"name": "page-timing",
"version": "3.1.5",
"description": "⏱ Collect and measure browser performance metrics",
"keywords": [
"browser",
"website",
"page",
"performance",
"measure",
"speed",
"loading",
"navigation-timing",
"⏱"
],
"author": "Fiverr SRE",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fiverr/page-timing.git"
},
"homepage": "https://opensource.fiverr.com/page-timing/",
"main": "src/index.js",
"module": "src/index.js",
"browser": "src/index.js",
"type": "module",
"sideEffects": false,
"scripts": {
"prestart": "which parcel || npm i parcel-bundler --no-save",
"prebuild": "which parcel || npm i parcel-bundler --no-save",
"start": "parcel play/index.pug",
"build": "parcel build play/index.pug --public-url . --no-minify",
"test": "NODE_ENV=test node --max_old_space_size=2048 ./node_modules/karma/bin/karma start .karma/index.js --log-level info",
"lint": "eslint ."
},
"devDependencies": {
"@fiverr/eslint-config-fiverr": "^3.2.4",
"@lets/sleep": "^1.0.0",
"@lets/wait": "^2.0.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.18.0",
"eslint-plugin-log": "^1.2.7",
"karma": "^6.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^5.0.0-alpha.3.0",
"mocha": "^8.2.1",
"regenerator-runtime": "^0.13.7",
"tti-polyfill": "^0.2.2",
"web-vitals": "^1.1.0",
"webpack": "^5.15.0"
}
}