This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
89 lines (89 loc) · 2.59 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
{
"name": "@nebula.js/sn-mekko-chart",
"version": "1.4.0",
"description": "Compare the share of values using variable width of stacked bars",
"keywords": [
"qlik",
"nebula",
"stardust"
],
"bugs": {
"url": "https://github.com/qlik-oss/sn-mekko-chart/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/qlik-oss/sn-mekko-chart.git"
},
"license": "MIT",
"author": "QlikTech International AB",
"main": "./dist/sn-mekko-chart.js",
"files": [
"core",
"dist",
"api-specifications",
"sn-mekko-chart-ext"
],
"scripts": {
"build": "./tools/generate-all-locale.js && nebula build --core core --mode='production' && nebula sense --partial true --output='sn-mekko-chart-ext' --sourcemap true",
"copy:ext": "node ./tools/copy-ext.js",
"format": "prettier --write '**'",
"format:check": "prettier --check '**'",
"lint": "./tools/generate-all-locale.js && eslint src",
"prepare": "husky",
"spec": "sy from-jsdoc -c ./spec-configs/props.conf.js",
"start": "nebula serve --type mekkochart",
"test:unit": "jest",
"validate:locale": "node ./tools/validate-locale-strings.js",
"preversion": "pnpm build",
"version": "pnpm spec && git add api-specifications"
},
"prettier": "@qlik/prettier-config",
"eslintConfig": {
"extends": [
"@qlik/eslint-config",
"@qlik/eslint-config/jest"
],
"rules": {
"no-param-reassign": 0,
"no-unused-expressions": 0,
"jest/unbound-method": 0
}
},
"devDependencies": {
"@babel/cli": "7.24.1",
"@babel/core": "7.24.3",
"@babel/parser": "7.24.1",
"@babel/preset-env": "7.24.3",
"@babel/traverse": "7.24.1",
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@nebula.js/cli": "4.14.0",
"@nebula.js/cli-build": "4.14.0",
"@nebula.js/cli-sense": "4.14.0",
"@nebula.js/cli-serve": "4.14.0",
"@nebula.js/stardust": "4.14.0",
"@qlik/eslint-config": "0.7.15",
"@qlik/prettier-config": "0.4.11",
"@scriptappy/cli": "0.10.0",
"@scriptappy/from-jsdoc": "0.19.0",
"babel-plugin-istanbul": "6.1.1",
"eslint": "8.57.0",
"fs-extra": "11.2.0",
"globby": "11.1.0",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"picasso-plugin-q": "2.2.7",
"picasso.js": "2.2.7",
"prettier": "3.2.5",
"qlik-chart-modules": "0.69.0",
"typescript": "5.4.3"
},
"peerDependencies": {
"@nebula.js/stardust": ">=4.14.0"
},
"publishConfig": {
"access": "public"
},
"systemjs": "./dist/sn-mekko-chart.systemjs.js"
}