-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 860 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 860 Bytes
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
{
"name": "@highcharts/controls",
"version": "0.7.0",
"description": "GUI controls for Highcharts charts, Grid and Dashboards options",
"license": "ISC",
"author": "Torstein Hønsi",
"type": "module",
"main": "js/controls.js",
"types": "js/controls.d.ts",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c --watch",
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:ui": "playwright test --ui",
"prepare": "husky"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"rollup": "^4.57.1",
"rollup-plugin-dts": "^6.3.0",
"tslib": "^2.8.1",
"typescript": "^5.3.0"
},
"dependencies": {
"highcharts": "^12.4.0"
}
}