forked from Open-Web-Analytics/Open-Web-Analytics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.18 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.18 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
{
"name": "owa",
"version": "1.0.0",
"description": "Open Web Analytics is an open source alternative to commercial web analytics tools such as Google Analytics. This software allows you to stay in control of the data you collect about the user of your websites or applications.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack-cli --mode production && npm run copyTracker",
"start": "webpack-cli --mode development --watch",
"copyTracker": "shx cp modules/base/dist/owa.tracker.js modules/base/js/owa.tracker-combined-min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Open-Web-Analytics/Open-Web-Analytics.git"
},
"keywords": [],
"author": "OWA Team <hello@openwebanalytics.com>",
"license": "GPL-2.0-only",
"bugs": {
"url": "https://github.com/Open-Web-Analytics/Open-Web-Analytics/issues"
},
"homepage": "https://github.com/Open-Web-Analytics/Open-Web-Analytics#readme",
"dependencies": {
"jquery": "^3.6.0",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-concat-files-plugin": "^0.5.2"
},
"devDependencies": {
"shx": "^0.3.4"
}
}