-
Notifications
You must be signed in to change notification settings - Fork 352
/
package.json
171 lines (171 loc) · 5.08 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
{
"name": "billboard.js",
"version": "3.14.1",
"description": "Re-usable easy interface JavaScript chart library, based on D3 v4+",
"homepage": "https://naver.github.io/billboard.js/",
"main": "dist/billboard.js",
"module": "dist-esm/billboard.js",
"types": "types/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist-esm/billboard.js",
"require": "./dist/billboard.pkgd.js"
},
"./dist/plugin/*": {
"types": "./types/plugin/*.d.ts",
"import": "./dist-esm/plugin/*.js",
"require": "./dist/plugin/pkgd/*.js"
},
"./dist/*": "./dist/*",
"./src/Plugin/*": "./src/Plugin/*.js"
},
"scripts": {
"start": "webpack serve --open",
"start:plugin": "cross-env PLUGIN=true webpack-dev-server --open",
"build": "npm run build:production && npm run build:packaged && npm run build:theme && npm run build:plugin && npm run build:esm && npm run build:cjs && npm run build:plugin:types",
"build:cjs": "node ./config/cjs.js",
"build:esm": "rollup -c ./config/rollup/esm.js",
"build:production": "cross-env NODE_ENV=production webpack",
"build:packaged": "cross-env NODE_ENV=packaged webpack",
"build:dev": "cross-env NODE_ENV=development webpack",
"build:theme": "cross-env NODE_ENV=theme webpack",
"build:production:analyzer": "cross-env ANALYZER=true npm run build:production",
"build:packaged:analyzer": "cross-env ANALYZER=true npm run build:packaged",
"build:plugin": "cross-env NODE_ENV=plugin webpack && cross-env NODE_ENV=plugin MODE=min webpack && cross-env NODE_ENV=plugin MODE=pkgd webpack && cross-env NODE_ENV=plugin MODE=pkgd-min webpack",
"build:plugin:types": "node ./config/type.d-plugin.js",
"release": "semantic-release",
"lint": "eslint",
"format": "dprint fmt",
"loc": "cloc --by-file src",
"test": "vitest",
"coverage": "vitest run",
"coverage:ci": "cross-env NODE_ENV=CI npm run coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"jsdoc": "node ./config/jsdoc.js",
"jsdoc:cmd": "jsdoc -c jsdoc.json",
"lint-staged": "lint-staged --config ./config/.lintstagedrc.json",
"prepare": "husky install"
},
"sideEffects": [
"dist/**/*.css",
"src/**/*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/naver/billboard.js"
},
"bugs": {
"url": "https://github.com/naver/billboard.js/issues"
},
"keywords": [
"d3",
"chart",
"graph",
"svg"
],
"files": [
"dist",
"dist-esm",
"src",
"types",
"CONTRIBUTING.md"
],
"npmName": "billboard.js",
"npmFileMap": [
{
"basePath": "dist",
"files": [
"**/*"
]
}
],
"author": "NAVER Corp.",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"@types/d3-selection": "^3.0.11",
"@types/d3-transition": "^3.0.9",
"d3-axis": "^3.0.0",
"d3-brush": "^3.0.0",
"d3-drag": "^3.0.0",
"d3-dsv": "^3.0.1",
"d3-ease": "^3.0.1",
"d3-hierarchy": "^3.1.2",
"d3-interpolate": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-time-format": "^4.1.0",
"d3-transition": "^3.0.1",
"d3-zoom": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.14.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-typescript": "^12.1.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/d3": "^7.4.3",
"@types/sinon": "^17.0.3",
"@vitest/browser": "^2.1.4",
"@vitest/coverage-istanbul": "^2.1.4",
"@vitest/ui": "^2.1.4",
"better-docs": "^2.7.3",
"clean-webpack-plugin": "^4.0.0",
"cloc": "2.2.0-cloc",
"core-js": "^3.39.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"d3-color": "^3.1.0",
"d3-delaunay": "^6.0.4",
"d3-format": "^3.1.0",
"d3-polygon": "^3.0.1",
"docdash": "^2.0.2",
"dprint": "^0.47.5",
"esbuild-loader": "^4.2.2",
"eslint": "^9.14.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.5.0",
"husky": "^9.1.6",
"jsdoc": "^4.0.4",
"lint-staged": "^15.2.10",
"mini-css-extract-plugin": "^2.9.2",
"playwright": "^1.48.2",
"regenerator-runtime": "^0.14.1",
"rollup": "^4.26.0",
"rollup-plugin-delete": "^2.1.0",
"sass": "^1.80.7",
"sass-loader": "^16.0.3",
"semantic-release": "^24.2.0",
"simulant": "^0.2.2",
"sinon": "^19.0.2",
"string-replace-loader": "^3.1.0",
"style-loader": "^4.0.0",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vitest": "^2.1.4",
"webpack": "^5.96.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-clean": "^1.2.5",
"webpack-cli": "^5.1.4",
"webpack-common-shake": "^2.1.0",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1",
"webpackbar": "^7.0.0",
"write-file-webpack-plugin": "^4.5.1"
},
"packageManager": "yarn@4.3.1"
}