-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
102 lines (102 loc) · 3.58 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
{
"name": "roadmap-radar-chart",
"description": "A radar chart to generate an overview of your roadmap or tech radar.",
"version": "0.1.3",
"repository": {
"type": "git",
"url": "https://github.com/szerintedmi/RadarChart.git"
},
"keywords": [
"chart",
"roadmap",
"radar"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/szerintedmi/RadarChart/issues"
},
"homepage": "https://github.com/szerintedmi/RadarChart",
"private": false,
"sideEffects": [
"*.css"
],
"engines": {
"node": ">=12"
},
"main": "dist/cjs/main.js",
"module": "dist/mjs/main.js",
"types": "dist/mjs/main.d.ts",
"exports": {
".": {
"import": "./dist/mjs/main.js",
"require": "./dist/cjs/main.js"
},
"./style.css": "./dist/style.css"
},
"scripts": {
"start": "yarn start:development",
"start:development": "yarn tsc-watch:mjs --onsuccess \"yarn webpack serve --config webpack.dev.js\"",
"start:production": "yarn tsc:mjs && yarn webpack serve --config webpack.prod.js",
"test": "jest",
"test:ci": "jest --ci --reporters='default' --reporters='./.github/github-actions-reporter'",
"percy:snapshots": "yarn percy exec node src/percy-snapshots.js",
"percy:snapshots-action": "node src/percy-snapshots.js",
"build": "yarn build:production",
"build:development": "yarn tsc:mjs && ./copyassets.sh && yarn webpack --config webpack.dev.js",
"build:production": "yarn tsc:mjs && ./copyassets.sh && yarn webpack --config webpack.prod.js",
"build:ci": "yarn tsc:mjs && ./copyassets.sh && yarn webpack --config webpack.ci.js",
"build:publish": "yarn tsc:publish && ./copyassets.sh && ./fixup.sh",
"tsc:mjs": "yarn build:clean && ./copyassets.sh && tsc -p tsconfig.json",
"tsc-watch:mjs": "yarn build:clean && ./copyassets.sh && tsc-watch -p tsconfig.json",
"tsc:publish": "yarn build:clean && tsc -p tsconfig-mjs.json && tsc -p tsconfig-cjs.json",
"build:clean": "rm -fr dist"
},
"dependencies": {
"@types/d3": "6.3.0",
"@types/geometric": "2.2.0",
"adaptive-linearization": "1.0.3",
"d3-array": "2.12.1",
"d3-dsv": "2.0.0",
"d3-force": "2.1.1",
"d3-polygon": "2.0.0",
"d3-quadtree": "2.0.0",
"d3-scale": "3.3.0",
"d3-scale-chromatic": "2.0.0",
"d3-selection": "2.0.0",
"d3-shape": "2.1.0",
"d3-transition": "2.0.0",
"geometric": "2.2.6",
"path-data-polyfill": "1.0.3",
"svgpath": "2.3.1",
"typescript": "4.2.4"
},
"devDependencies": {
"@percy/script": "1.1.0",
"@relative-ci/agent": "1.5.0",
"@types/jest": "26.0.23",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"@webpack-cli/init": "1.1.3",
"css-loader": "5.2.4",
"eslint": "7.25.0",
"favicons": "6.2.1",
"favicons-webpack-plugin": "5.0.2",
"html-webpack-plugin": "5.3.1",
"jest": "26.6.3",
"style-loader": "2.0.0",
"svgdom": "0.1.8",
"ts-jest": "26.5.5",
"ts-jest-resolver": "1.0.0",
"tsc-watch": "4.2.9",
"wait-on": "5.3.0",
"webpack": "5.36.0",
"webpack-cli": "4.6.0",
"webpack-dev-server": "3.11.2",
"webpack-merge": "5.7.3",
"webpack-stats-plugin": "1.0.3"
},
"files": [
"dist/"
]
}