split-time
Version:
A JavaScript library for measuring FCP, LCP. Report real user measurements to tracking tool.
39 lines (38 loc) • 1.13 kB
JSON
{
"name": "split-time",
"version": "0.1.0",
"description": "A JavaScript library for measuring FCP, LCP. Report real user measurements to tracking tool.",
"main": "src/index.js",
"scripts": {
"start": "tsc -w & rollup -c rollup.config.ts -w",
"build": "tsc && tsc --module commonjs --outDir dist/lib && rollup -c rollup.config.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Maopy/split-time.git"
},
"keywords": [
"performance-metrics",
"first-contentful-paint",
"largest-contentful-paint",
"web-performance",
"webperf"
],
"author": "Maopy",
"license": "MIT",
"bugs": {
"url": "https://github.com/Maopy/split-time/issues"
},
"homepage": "https://github.com/Maopy/split-time#readme",
"type": "module",
"types": "src/@types/index.d.ts",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"eslint": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"rollup": "^1.27.4",
"typescript": "^3.7.2"
}
}