This repository was archived by the owner on Mar 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
121 lines (121 loc) · 3.3 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@nebula.js/sn-action-button",
"version": "1.41.5",
"description": "Action button supernova",
"keywords": [
"qlik",
"nebula",
"supernova"
],
"bugs": {
"url": "https://github.com/qlik-oss/sn-action-button/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/qlik-oss/sn-action-button.git"
},
"license": "MIT",
"author": "QlikTech International AB",
"main": "dist/sn-action-button.js",
"files": [
"dist",
"api-specifications",
"core",
"sn-action-button-ext"
],
"scripts": {
"build": "node ./tools/build.js --core --ext",
"build:dev": "node ./tools/build.js --core --ext --mode development",
"build:watch": "node ./tools/build.js --ext --mode development -w",
"copy:ext": "node ./tools/copy-ext.js",
"format": "prettier --write '**'",
"format:check": "prettier --check '**'",
"lint": "eslint .",
"prepack": "./tools/prepare-sn-pack.js",
"prepare": "husky install",
"prepublishOnly": "NODE_ENV=production pnpm run build && pnpm spec",
"sense": "nebula sense",
"spec": "sy from-jsdoc -c ./spec-configs/props.conf.js",
"start": "nebula serve",
"start:mfe": "nebula serve --mfe --type sn-action-button",
"test:e2e": "playwright test",
"test:local:rendering": "./test/rendering/scripts/run-rendering-test.sh",
"test:local:update:screenshots": "./test/rendering/scripts/update-screenshots.sh",
"test:unit": "jest"
},
"lint-staged": {
"*.{js, jsx}": [
"eslint --cache --fix",
"prettier --check src/**'"
],
"*.{json,css,md}": [
"pnpm format"
]
},
"prettier": "@qlik/prettier-config",
"eslintConfig": {
"env": {
"browser": true
},
"extends": [
"@qlik/eslint-config",
"@qlik/eslint-config/jest"
],
"rules": {
"no-bitwise": 0,
"no-nested-ternary": 0,
"no-param-reassign": 0,
"no-unused-expressions": 0,
"import/no-extraneous-dependencies": [
2,
{
"devDependencies": true
}
],
"jest/unbound-method": 0
}
},
"devDependencies": {
"@babel/cli": "7.23.9",
"@babel/core": "7.24.0",
"@babel/helper-define-map": "7.18.6",
"@babel/preset-env": "7.24.0",
"@commitlint/cli": "19.2.0",
"@commitlint/config-conventional": "19.1.0",
"@nebula.js/cli": "4.13.0",
"@nebula.js/cli-build": "4.13.0",
"@nebula.js/cli-sense": "4.13.0",
"@nebula.js/cli-serve": "4.13.0",
"@nebula.js/stardust": "4.13.0",
"@nebula.js/test-utils": "0.6.0",
"@playwright/test": "1.42.1",
"@qlik/eslint-config": "0.7.13",
"@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",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-junit": "16.0.0",
"lint-staged": "15.2.2",
"mocha-junit-reporter": "2.2.1",
"prettier": "2.8.8",
"qlik-chart-modules": "0.69.0",
"shx": "0.3.4",
"typescript": "5.4.2",
"yargs": "17.7.2"
},
"peerDependencies": {
"@nebula.js/stardust": "^4.11.0"
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
},
"systemjs": "dist/sn-action-button.systemjs.js"
}