-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.4 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
{
"name": "@cronitorio/cronitor-rum",
"version": "0.4.1",
"description": "Official Cronitor RUM client (browser)",
"repository": {
"type": "git",
"url": "git+https://github.com/cronitorio/cronitor-rum-js.git"
},
"keywords": [
"cronitor",
"analytics",
"monitoring",
"performance"
],
"author": "Developers <[email protected]>",
"license": "Apache-2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "yarn run build:target && yarn run build:types",
"build:target": "node esbuild.js",
"build:types": "tsc --project tsconfig.json",
"fmt": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"test": "cp dist/rumscript.js tests/fixtures/rumscript.js && cp dist/index.js tests/fixtures/index.js && playwright test"
},
"devDependencies": {
"@playwright/test": "^1.32.0",
"browserslist": "^4.21.5",
"esbuild": "^0.17.12",
"esbuild-node-externals": "^1.6.0",
"esbuild-plugin-browserslist": "^0.7.0",
"express": "^4.18.2",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.5"
},
"bugs": {
"url": "https://github.com/cronitorio/cronitor-rum-js/issues"
},
"homepage": "https://github.com/cronitorio/cronitor-rum-js#readme",
"dependencies": {
"web-vitals": "^3.3.0"
}
}