forked from derhuerst/svg-radar-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.67 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": "@cantoo/svg-radar-chart",
"description": "A reusable radar chart in SVG.",
"version": "1.0.11",
"type": "module",
"private": false,
"main": "index.js",
"types": "types/index.d.ts",
"files": [
"index.js",
"smoothing.js",
"types/*.d.ts"
],
"keywords": [
"svg",
"radar",
"chart",
"dataviz",
"visualization"
],
"author": "Jannis R <[email protected]>",
"contributors": [
"Cantoo <[email protected]>"
],
"homepage": "http://derhuerst.github.io/svg-radar-chart/",
"repository": "cantoo-scribe/svg-radar-chart",
"bugs": "https://github.com/cantoo-scribe/svg-radar-chart/issues",
"license": "ISC",
"engines": {
"node": ">=20"
},
"dependencies": {
"d3-shape": "^1.0.3",
"virtual-dom": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@types/d3-shape": "^1.0.3",
"@types/react": "^18.3.2",
"@types/virtual-dom": "^2.1.1",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"envify": "^4.1.0",
"eslint": "^8.56.0",
"release-it": "^17.3.0",
"safe-eval": "^0.4.1",
"typescript": "^5.4.5",
"uglify-es": "^3.3.9",
"virtual-dom-stringify": "^3.0.1"
},
"scripts": {
"lint": "eslint .",
"release": "npm run lint && npm run build && release-it",
"docs-build": "env NODE_ENV=production browserify -g [ babelify --presets [ @babel/preset-env ] ] -g envify docs/index.js | uglifyjs -mc -o docs/bundle.min.js",
"docs-dev": "env NODE_ENV=dev browserify docs/index.js > docs/bundle.min.js",
"build": "npm run docs-build && npm run build:types",
"build:types": "tsc",
"prepublishOnly": "npm run lint"
}
}