This repository has been archived by the owner on Oct 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.66 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
{
"name": "sdatch",
"version": "0.1.1d",
"description": "Chart generator based on d3",
"main": "index.js",
"author": "Nomura Suzume",
"license": "MIT",
"type": "module",
"module": "src",
"scripts": {
"clean": "yarn --force autoclean && yarn cache clean && rm -rf node_modules dist lib",
"bundle": "webpack && tsc -b",
"watch": "webpack watch",
"ts-build": "tsc -b",
"lint": "eslint ./src",
"type-check": "tsc --pretty -p tsconfig.json",
"test": "mocha -r \"jsdom-global\"",
"coverage": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha -r \"jsdom-global/register\" "
},
"nyc": {
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"types": "./dist/src/index.d.ts",
"dependencies": {
"d3": "^7.0.0",
"d3-array": "^3.0.1",
"d3-axis": "^3.0.0",
"d3-color": "^3.0.1",
"d3-dispatch": "^3.0.1",
"d3-drag": "^3.0.0",
"d3-dsv": "^3.0.1",
"d3-ease": "^3.0.1",
"d3-fetch": "^3.0.1",
"d3-format": "^3.1.0",
"d3-geo": "^3.0.1",
"d3-geo-projection": "^4.0.0",
"d3-path": "^3.0.1",
"d3-polygon": "^3.0.1",
"d3-random": "^3.0.1",
"d3-scale": "^4.0.0",
"d3-scale-chromatic": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-shape": "^3.0.1",
"d3-tile": "^1.0.0",
"d3-time": "^3.0.0",
"d3-time-format": "^4.0.0",
"d3-timer": "^3.0.1",
"d3-transition": "^3.0.1",
"moment": "^2.29.1",
"topojson-client": "^3.1.0",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.15.0",
"@babel/register": "^7.14.5",
"@jest/globals": "^27.0.6",
"@types/d3-array": "^3.0.1",
"@types/d3-collection": "^1.0.10",
"@types/d3-interpolate": "^3.0.1",
"@types/d3-scale": "^4.0.1",
"@types/d3-shape": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"babel-plugin-istanbul": "^6.0.0",
"babel-preset-env": "^1.7.0",
"bootstrap": "^5.1.3",
"c8": "^7.8.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"eslint": "^7.31.0",
"jsdom": "^16.7.0",
"jsdom-global": "^3.0.2",
"license-webpack-plugin": "^4.0.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"spdx-satisfies": "^5.0.1",
"terser-webpack-plugin": "^5.2.5",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"typescript-styled-plugin": "^0.18.0",
"typescript-tslint-plugin": "^1.0.1",
"webpack": "^5.45.1",
"webpack-cli": "^4.7.2"
}
}