This repository has been archived by the owner on Feb 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.05 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
{
"name": "@data-forge-plot/apex",
"version": "0.2.2",
"description": "A plugin to Data-Forge Plot for plotting charts using ApexCharts.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"c": "npm run clean",
"clean": "rm -rf build/*",
"b": "npm run build",
"build": "npm run build:template && npm run build:lib",
"build:template": "webpack --config webpack.template.config.js",
"build:lib": "webpack --config webpack.lib.config.js",
"cb": "npm run clean-build",
"clean-build": "npm run clean && npm run build",
"prepublishOnly": "npm test && npm run clean-build",
"l": "npm run lint",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"pretest": "npm run lint",
"t": "npm run test",
"test": "jest",
"tw": "npm run test:watch",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/data-forge/data-forge-plot-apex.git"
},
"keywords": [],
"author": "ashley@codecapers.com.au",
"license": "MIT",
"bugs": {
"url": "https://github.com/data-forge/data-forge-plot-apex/issues"
},
"homepage": "https://github.com/data-forge/data-forge-plot-apex#readme",
"dependencies": {
"@data-forge-plot/chart-def": "^1.4.1",
"@data-forge/serialization": "^1.0.0",
"apexcharts": "^3.8.0",
"dayjs": "^1.8.13",
"numeral": "^2.0.6"
},
"devDependencies": {
"@types/jest": "^24.0.6",
"@types/node": "10.11.4",
"@types/numeral": "0.0.25",
"@types/sugar": "^2.0.2",
"copy-webpack-plugin": "^5.0.2",
"jest": "^24.1.0",
"source-map-support": "0.5.9",
"sugar": "^2.0.6",
"ts-jest": "^23.10.5",
"ts-loader": "^5.3.3",
"ts-node": "7.0.1",
"tslint": "^5.12.1",
"typescript": "3.1.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-node-externals": "^1.7.2"
}
}