forked from apexcharts/apexcharts.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.15 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
{
"name": "apexcharts",
"version": "3.11.0",
"description": "A JavaScript Chart Library",
"repository": {
"type": "git",
"url": "https://github.com/apexcharts/apexcharts.js.git"
},
"main": "dist/apexcharts.common.js",
"module": "dist/apexcharts.esm.js",
"unpkg": "dist/apexcharts.js",
"jsdelivr": "dist/apexcharts.js",
"typings": "types/apexcharts.d.ts",
"files": [
"src",
"dist/*.js",
"dist/*.css",
"dist/locales/*.json",
"types/*.d.ts"
],
"scripts": {
"dev": "rollup -w -c build/config.js --environment TARGET:web-umd-dev",
"dev:cjs": "rollup -w -c build/config.js --environment TARGET:web-cjs",
"dev:esm": "rollup -w -c build/config.js --environment TARGET:web-esm",
"bundle": "node build/build.js",
"build": "npm run bundle && webpack -p",
"build:umd": "rollup -w -c build/config.js --environment TARGET:web-umd-dev",
"build:amd": "webpack -p",
"lint": "eslint src/**/*.js tests/**/*.js --no-fix",
"test": "jest",
"unit": "jest tests/unit/",
"e2e": "jest tests/e2e/"
},
"dependencies": {
"promise-polyfill": "8.1.0",
"svg.draggable.js": "^2.2.2",
"svg.easing.js": "^2.0.0",
"svg.filter.js": "^2.0.2",
"svg.pathmorphing.js": "^0.1.3",
"svg.resize.js": "^1.4.3",
"svg.select.js": "^2.1.2"
},
"devDependencies": {
"@babel/core": "7.3.4",
"@babel/plugin-proposal-class-properties": "7.2.3",
"@babel/preset-env": "7.3.4",
"babel-core": "^6.9.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.9.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"chalk": "2.4.2",
"concurrently": "^3.5.1",
"cross-env": "5.2.0",
"css-loader": "3.2.0",
"eslint": "5.14.1",
"eslint-config-prettier": "3.3.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-promise": "4.0.1",
"jest": "24.1.0",
"jest-puppeteer": "3.8.0",
"prettier": "1.16.4",
"puppeteer": "1.19.0",
"puppeteer-core": "1.11.0",
"rollup": "1.1.0",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-copy-glob": "0.3.0",
"rollup-plugin-json": "3.1.0",
"rollup-plugin-node-resolve": "4.0.0",
"rollup-plugin-postcss": "2.0.3",
"rollup-plugin-replace": "2.1.0",
"rollup-plugin-strip": "1.2.1",
"rollup-plugin-svgo": "1.0.3",
"style-loader": "0.23.1",
"svg-inline-loader": "0.8.0",
"terser": "3.14.1",
"tslint": "5.12.1",
"typescript": "3.2.2",
"webpack": "^2.2.1"
},
"author": {
"name": "Juned Chhipa",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/apexcharts/apexcharts.js/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"homepage": "https://apexcharts.com",
"keywords": [
"charts",
"graphs",
"visualizations",
"data"
]
}