Skip to content

Commit 07a1f6b

Browse files
Package json dashboard (#655)
* Delete LICENSE * Add files via upload * Update package.json * Update package.json * Delete LICENSE.pdf * Create LICENSE * Update README.md * Update package.json * Update webpack.config.js * Update webpack.config.js * Update package.json --------- Co-authored-by: tsv2013 <[email protected]>
1 parent 3bbfdab commit 07a1f6b

File tree

3 files changed

+29
-15
lines changed

3 files changed

+29
-15
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66

77
[![Build Status](https://dev.azure.com/SurveyJS/SurveyJS%20Integration%20Tests/_apis/build/status/SurveyJS%20Library?branchName=master)](https://dev.azure.com/SurveyJS/SurveyJS%20Integration%20Tests/_build/latest?definitionId=7&branchName=master)
8-
<a href="https://github.com/DevExpress/testcafe">
9-
<img alt="Tested with TestCafe" src="https://img.shields.io/badge/tested%20with-TestCafe-2fa4cf.svg">
8+
<a href="https://github.com/microsoft/playwright">
9+
<img alt="Tested with Playwright" src="https://img.shields.io/badge/tested%20with-Playwright-2fa4cf.svg">
1010
</a>
1111
<a href="https://github.com/surveyjs/survey-analytics/issues">
1212
<img alt="Open Issues" title="Open Issues" src="https://img.shields.io/github/issues/surveyjs/survey-analytics.svg">

package.json

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
2+
"version": "2.3.15",
3+
"name": "survey-analytics",
24
"scripts": {
35
"start": "webpack-dev-server --env buildType=dev",
46
"test": "jest",
@@ -21,28 +23,16 @@
2123
"pre-push-check": "npm run lint && npm run test",
2224
"pwinst": "playwright install chromium"
2325
},
24-
"version": "2.3.15",
25-
"name": "survey-analytics",
26-
"description": "SurveyJS analytics Library.",
2726
"main": "survey.analytics.js",
2827
"files": [
2928
"**/*"
3029
],
3130
"typings": "survey.analytics.d.ts",
3231
"private": false,
33-
"keywords": [
34-
"Survey",
35-
"JavaScript",
36-
"Library",
37-
"SurveyJS",
38-
"Analytics"
39-
],
4032
"repository": {
4133
"type": "git",
4234
"url": "https://github.com/surveyjs/survey-analytics.git"
4335
},
44-
"homepage": "https://surveyjs.io/",
45-
"license": "SEE LICENSE IN LICENSE",
4636
"dependencies": {
4737
"mongodb": "^6.20.0",
4838
"muuri": "^0.8.0",

webpack.config.js

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const year = today.getFullYear();
4444
var banner = [
4545
"surveyjs - SurveyJS Dashboard library v" + packageJson.version,
4646
"Copyright (c) 2015-" + year + " Devsoft Baltic OÜ - http://surveyjs.io/",
47-
"License: MIT (http://www.opensource.org/licenses/mit-license.php)",
47+
"License: SEE LICENSE IN LICENSE",
4848
].join("\n");
4949

5050
function getPercentageHandler(emitNonSourceFiles, buildPath) {
@@ -86,6 +86,30 @@ function getPercentageHandler(emitNonSourceFiles, buildPath) {
8686
},
8787
}
8888
packageJson.module = "fesm/survey.analytics.mjs";
89+
packageJson.homepage = "https://surveyjs.io/";
90+
packageJson.author = "DevSoft Baltic OÜ <[email protected]>";
91+
packageJson.license = "SEE LICENSE IN LICENSE";
92+
packageJson.licenseUrl = "https://surveyjs.io/licensing";
93+
packageJson.description = "SurveyJS Dashboard is a UI component for visualizing and analyzing survey data. It interprets the form JSON schema to identify question types and renders collected responses using interactive charts and tables.";
94+
packageJson.keywords = [
95+
"survey",
96+
"form",
97+
"surveyjs",
98+
"dashboard",
99+
"analytics",
100+
"data-visualization",
101+
"charts",
102+
"tables",
103+
"survey-results",
104+
"survey-data",
105+
"survey-analysis",
106+
"json",
107+
"data-analysis",
108+
"survey-library",
109+
"reporting",
110+
"data-management",
111+
"visualize-survey"
112+
];
89113
fs.writeFileSync(
90114
buildPath + "package.json",
91115
JSON.stringify(packageJson, null, 2),

0 commit comments

Comments
 (0)