-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.78 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.78 KB
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
{
"name": "ostrio-analytics",
"version": "2.0.0",
"description": "CCPA and GDPR friendly real-time web analytics with error collection",
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./umd": "./dist/ostrio-analytics.umd.js",
"./min": "./dist/ostrio-analytics.min.js",
"./source": "./src/index.ts"
},
"unpkg": "dist/ostrio-analytics.min.js",
"jsdelivr": "dist/ostrio-analytics.min.js",
"files": [
"dist",
"src",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"clean": "rimraf dist",
"build:types": "tsc -p tsconfig.types.json",
"build:rollup": "rollup -c",
"build": "npm run clean && npm run build:rollup && npm run build:types",
"prepublishOnly": "npm run build",
"test": "TS_NODE_PROJECT=tsconfig.test.json node --loader ts-node/esm ./node_modules/mocha/bin/mocha.js --extension ts 'test/**/*.spec.ts'",
"lint": "eslint ./src/*"
},
"repository": {
"type": "git",
"url": "git://github.com/veliovgroup/ostrio-analytics.git"
},
"keywords": [
"activity",
"analytics",
"behavior",
"demographics",
"events",
"metrics",
"ostr.io",
"page views",
"pageviews",
"real-time",
"sessions",
"tracking",
"visitor",
"web",
"website",
"DNT",
"GDPR",
"CCPA"
],
"tags": [
"activity",
"analytics",
"behavior",
"demographics",
"events",
"metrics",
"ostr.io",
"page views",
"pageviews",
"real-time",
"sessions",
"tracking",
"visitor",
"web",
"website",
"DNT",
"GDPR",
"CCPA"
],
"engines": {
"node": ">=18"
},
"homepage": "https://github.com/veliovgroup/ostrio-analytics",
"author": "dr.dimitru (https://veliovgroup.com)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/veliovgroup/ostrio-analytics/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@stylistic/eslint-plugin": "^5.6.1",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/sinon": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"chai": "^6.2.1",
"eslint": "^9.39.1",
"global-jsdom": "^27.0.0",
"mocha": "^11.7.5",
"rimraf": "^6.1.2",
"rollup": "^4.53.3",
"sinon": "^21.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}