-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
120 lines (120 loc) · 3.87 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "flagon-userale",
"version": "2.4.0",
"description": "UserALE is the UserALE client for DOM and JavaScript-based applications. It automatically attaches event handlers to log every user interaction on a web page, including rich JS single-page apps.",
"main": "build/userale.js",
"types": "build/userale.d.ts",
"scripts": {
"format": "prettier --ignore-path .gitignore --write src/ test/",
"lint": "eslint ./src --fix --ext ts --ext js",
"check-types": "tsc --pretty --noEmit",
"license:check": "license-eye -c .licenserc.yaml header check",
"license:fix": "license-eye -c .licenserc.yaml header fix",
"build": "tsc && npm run clean && rollup -c --bundleConfigAsCjs rollup.config.js",
"postbuild": "npm run license:fix",
"clean": "rm -rf ./build",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest -c ./test/unit/jest.config.ts",
"test:e2e": "playwright test -c ./test/e2e/playwright.config.ts",
"pretest:e2e": "rm -rf ./test/e2e/chromeData/*",
"posttest:e2e": "rm -rf ./test/e2e/chromeData/*",
"example:run": "node example/server.js",
"example:watch": "nodemon -w ./example example/server.js",
"prepare": "husky",
"postinstall": "go install github.com/apache/skywalking-eyes/cmd/license-eye@latest && npx playwright install",
"commit": "cz"
},
"repository": {
"type": "git",
"url": "git://https://github.com/apache/flagon-useralejs"
},
"keywords": [
"UserALE",
"Logging",
"Log Analytics",
"Business Analytics",
"Usability",
"User Testing",
"Behavioral Analytics"
],
"author": "Apache Flagon",
"contributors": [
"Michelle Beard",
"Robert Foley",
"Alex Ford",
"Clay Gimenez",
"Gedd Johnson",
"Evan Jones",
"Lewis McGibbney",
"Joshua C. Poore",
"Ryan Thenhaus",
"Jason Young"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/apache/flagon-useralejs/issues"
},
"homepage": "https://flagon.apache.org/",
"engines": {
"node": ">= 18.x",
"npm": ">= 9.x"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/plugin-transform-block-scoping": "^7.23.4",
"@babel/plugin-transform-runtime": "^7.23.4",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@babel/register": "^7.22.15",
"@eslint/js": "^9.2.0",
"@playwright/test": "^1.44.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/chrome": "^0.0.268",
"@types/firefox-webext-browser": "^120.0.3",
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.14.2",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@typescript/lib-dom": "npm:@types/web@^0.0.144",
"babel-jest": "^29.7.0",
"body-parser": "^1.20.2",
"commander": "^12.1.0",
"cypress": "^13.6.0",
"cz-conventional-changelog": "^3.3.0",
"detect-browser": "^5.3.0",
"dom-storage": "^2.1.0",
"esbuild": "^0.21.2",
"eslint": "^8.57.0",
"express": "^4.18.2",
"global-jsdom": "^24.0.0",
"globals": "^15.2.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^24.0.0",
"jsonschema": "^1.4.1",
"nodemon": "^3.0.2",
"prettier": "^3.2.5",
"rollup": "^4.6.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-license": "^3.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0",
"ws": "^8.18.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}