@nebula.js/sn-pivot-table 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +95 -0
- package/api-specifications/properties.json +130 -0
- package/core/esm/index.js +40 -0
- package/core/package.json +8 -0
- package/dist/sn-pivot-table.js +40 -0
- package/package.json +104 -0
- package/sn-pivot-table-ext/dist/sn-pivot-table.js +40 -0
- package/sn-pivot-table-ext/sn-pivot-table.js +1 -0
- package/sn-pivot-table-ext/sn-pivot-table.qext +9 -0
package/package.json
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nebula.js/sn-pivot-table",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Pivot table supernova",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "QlikTech International AB",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"qlik",
|
|
9
|
+
"nebula",
|
|
10
|
+
"stardust"
|
|
11
|
+
],
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/qlik-oss/sn-pivot-table/issues"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/qlik-oss/sn-pivot-table.git"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"api-specifications",
|
|
24
|
+
"core",
|
|
25
|
+
"dist",
|
|
26
|
+
"sn-pivot-table-ext"
|
|
27
|
+
],
|
|
28
|
+
"engines": {
|
|
29
|
+
"node": ">=10"
|
|
30
|
+
},
|
|
31
|
+
"main": "dist/sn-pivot-table.js",
|
|
32
|
+
"module": "core/esm/index.js",
|
|
33
|
+
"scripts": {
|
|
34
|
+
"build": "node ./scripts/build.js --core --ext",
|
|
35
|
+
"build:dev": "node ./scripts/build.js --core --mode development",
|
|
36
|
+
"build:watch": "node ./scripts/build.js --mode development -w",
|
|
37
|
+
"copy:ext": "node ./scripts/copy-ext.js",
|
|
38
|
+
"lint": "eslint src/",
|
|
39
|
+
"start": "nebula serve --type sn-pivot-table",
|
|
40
|
+
"sense": "nebula sense",
|
|
41
|
+
"types:check": "tsc --noEmit",
|
|
42
|
+
"test:unit": "jest",
|
|
43
|
+
"test:rendering": "playwright test",
|
|
44
|
+
"test:local:rendering": "./test/rendering/scripts/run-rendering-test.sh",
|
|
45
|
+
"test:local:update:screenshots": "./test/rendering/scripts/update-screenshots.sh",
|
|
46
|
+
"spec": "scriptappy-from-jsdoc -c ./scriptappy.config.js",
|
|
47
|
+
"prepare": "husky install",
|
|
48
|
+
"preversion": "yarn build",
|
|
49
|
+
"version": "yarn spec && git add api-specifications"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@babel/core": "7.17.10",
|
|
53
|
+
"@babel/preset-env": "7.17.10",
|
|
54
|
+
"@babel/preset-react": "7.16.7",
|
|
55
|
+
"@babel/preset-typescript": "7.16.7",
|
|
56
|
+
"@emotion/react": "11.9.0",
|
|
57
|
+
"@emotion/styled": "11.8.1",
|
|
58
|
+
"@mui/icons-material": "5.6.2",
|
|
59
|
+
"@mui/material": "5.7.0",
|
|
60
|
+
"@nebula.js/cli": "2.10.0",
|
|
61
|
+
"@nebula.js/cli-build": "2.10.0",
|
|
62
|
+
"@nebula.js/cli-sense": "2.10.0",
|
|
63
|
+
"@nebula.js/cli-serve": "2.10.0",
|
|
64
|
+
"@playwright/test": "1.22.0",
|
|
65
|
+
"@rollup/plugin-typescript": "8.3.2",
|
|
66
|
+
"@testing-library/dom": "8.13.0",
|
|
67
|
+
"@testing-library/jest-dom": "5.16.4",
|
|
68
|
+
"@testing-library/react": "12.1.5",
|
|
69
|
+
"@testing-library/react-hooks": "8.0.0",
|
|
70
|
+
"@testing-library/user-event": "14.2.0",
|
|
71
|
+
"@types/jest": "27.5.1",
|
|
72
|
+
"@types/react": "17.0.45",
|
|
73
|
+
"@types/react-dom": "17.0.17",
|
|
74
|
+
"@types/react-window": "1.8.5",
|
|
75
|
+
"@typescript-eslint/eslint-plugin": "5.23.0",
|
|
76
|
+
"@typescript-eslint/parser": "5.23.0",
|
|
77
|
+
"babel-eslint": "10.1.0",
|
|
78
|
+
"eslint": "8.15.0",
|
|
79
|
+
"eslint-config-airbnb": "19.0.4",
|
|
80
|
+
"eslint-config-airbnb-typescript": "17.0.0",
|
|
81
|
+
"eslint-config-prettier": "8.5.0",
|
|
82
|
+
"eslint-import-resolver-typescript": "2.7.1",
|
|
83
|
+
"eslint-plugin-import": "2.26.0",
|
|
84
|
+
"eslint-plugin-jsx-a11y": "6.5.1",
|
|
85
|
+
"eslint-plugin-prettier": "4.0.0",
|
|
86
|
+
"eslint-plugin-react": "7.29.4",
|
|
87
|
+
"eslint-plugin-react-hooks": "4.5.0",
|
|
88
|
+
"husky": "8.0.1",
|
|
89
|
+
"jest": "28.1.0",
|
|
90
|
+
"jest-environment-jsdom": "28.1.0",
|
|
91
|
+
"prettier": "2.6.2",
|
|
92
|
+
"qlik-chart-modules": "0.33.0",
|
|
93
|
+
"qlik-object-conversion": "0.13.0",
|
|
94
|
+
"react": "17.0.2",
|
|
95
|
+
"react-dom": "17.0.2",
|
|
96
|
+
"react-window": "1.8.7",
|
|
97
|
+
"scriptappy-from-jsdoc": "0.7.0",
|
|
98
|
+
"tslib": "2.4.0",
|
|
99
|
+
"typescript": "4.6.4"
|
|
100
|
+
},
|
|
101
|
+
"peerDependencies": {
|
|
102
|
+
"@nebula.js/stardust": "2.x"
|
|
103
|
+
}
|
|
104
|
+
}
|