This repository has been archived by the owner on Dec 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.5 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
{
"name": "@brightlayer-ui/highcharts",
"version": "2.1.0",
"description": "Base configurations for assorted HighCharts graph types for Brightlayer UI.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"package.json",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"prettier": "@brightlayer-ui/prettier-config",
"scripts": {
"build": "yarn && tsc",
"test": "jest src/**/** --passWithNoTests",
"test:angular": "cd angular-demo && yarn test && cd ..",
"test:react": "cd react-demo && yarn test && cd ..",
"test:build": "bash ./buildTest.sh",
"linkscript": "bash ./link.sh",
"prettier": "prettier \"src/**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --write",
"publish:package": "set npm_config_yes=true && npx -p @brightlayer-ui/publish blui-publish",
"tag:package": "npx -p @brightlayer-ui/tag blui-tag -s -blui-highcharts",
"start:angular": "yarn linkscript && cd angular-demo && yarn start",
"start:react": "yarn linkscript && cd react-demo && yarn start",
"lint": "eslint \"src/**/**.{tsx,ts}\"",
"lint:fix": "eslint \"src/**/**.{tsx,ts}\" --fix",
"generate:licenses": "npm-license-crawler -onlyDirectDependencies -json LICENSES.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brightlayer-ui/highcharts.git"
},
"dependencies": {
"@brightlayer-ui/colors": "^3.0.1"
},
"devDependencies": {
"@brightlayer-ui/eslint-config": "^2.0.5",
"@brightlayer-ui/prettier-config": "^1.0.3",
"@types/jest": "^26.0.0",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-react": "^7.18.0",
"highcharts": "^9.0.0",
"jest": "26.6.0",
"npm-license-crawler": "^0.2.1",
"prettier": "^2.0.0",
"ts-jest": "^26.4.3",
"typescript": "^4.0.0"
},
"peerDependencies": {
"highcharts": ">=7.2.0"
},
"keywords": [
"Highcharts",
"Visualization",
"Brightlayer-UI",
"Chart",
"Graph"
],
"author": "Brightlayer UI <brightlayer-ui@eaton.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/brightlayer-ui/highchart/issues"
},
"homepage": "https://github.com/brightlayer-ui/highcharts#readme"
}