Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: eb80b5b6721a34944ac53012e0ceb2fab3f6fd41 (plain) (blame)
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
{
  "name": "@eclipse-scout/chart",
  "version": "11.0.1",
  "description": "Eclipse Scout chart",
  "author": "BSI Business Systems Integration AG",
  "homepage": "https://www.eclipse.org/scout",
  "repository": {
    "type": "git",
    "url": "https://git.eclipse.org/c/scout/org.eclipse.scout.rt.git"
  },
  "license": "EPL-1.0",
  "engines": {
    "node": ">=12.1.0",
    "npm": ">=6.9.0",
    "pnpm": ">=5"
  },
  "keywords": [
    "scout",
    "eclipse-scout",
    "chart"
  ],
  "main": "./src/index.js",
  "files": [
    "src"
  ],
  "scripts": {
    "testserver:start": "scout-scripts test-server:start",
    "testserver:stop": "scout-scripts test-server:stop",
    "test:ci": "scout-scripts test:ci",
    "build:dev": "scout-scripts build:dev",
    "build:prod": "scout-scripts build:prod",
    "build:all": "scout-scripts build:dev && scout-scripts build:prod",
    "build:dev:watch": "scout-scripts build:dev:watch",
    "snapshot-cleanup": "releng-scripts snapshot-cleanup",
    "snapshot-predependency": "releng-scripts snapshot-install-dependency",
    "snapshot-postdependency": "releng-scripts snapshot-publish-dependency",
    "release-predependency": "releng-scripts release-install-dependency",
    "release-postdependency": "releng-scripts release-publish-dependency"
  },
  "devDependencies": {
    "@eclipse-scout/cli": "11.0.1",
    "@eclipse-scout/releng": "^10.0.0",
    "karma": "5.2.2"
  },
  "dependencies": {
    "jquery": "3.5.1",
    "@eclipse-scout/core": "11.0.1",
    "chart.js": "2.9.3",
    "chartjs-plugin-datalabels": "0.7.0"
  }
}

Back to the top