-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.79 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.79 KB
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
{
"name": "@geoblocks/d3-helper",
"version": "1.4.0",
"description": "d3 helper classes",
"license": "BSD-3-Clause",
"author": "Camptocamp SA <[email protected]> (https://www.camptocamp.com)",
"contributors": [
"Marion Baumgartner <[email protected]>",
"Benjamin Gerber <[email protected]>",
"Frederic Junod <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/geoblocks/d3-helper.git"
},
"keywords": [
"d3",
"helper",
"cartesian",
"chart"
],
"files": [
"/lib"
],
"type": "module",
"source": "src/index.ts",
"main": "lib/index.js",
"module": "lib/module.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run prettier && npm run lint && npm run test && npm run build-only",
"build-only": "tsc --pretty",
"doc": "typedoc src --out apidoc --readme none --hideGenerator",
"lint": "eslint src/*.ts src/**/*.ts",
"prettier": "npx prettier '{examples/,src/}{**/*,*}.{js,ts,jsx,tsx,html,css}' --write",
"start": "parcel serve --no-cache examples/*.html --public-url /",
"test": "vitest run --coverage --coverage.include='src'"
},
"dependencies": {
"d3-array": "^3.2.4",
"d3-axis": "^3.0.0",
"d3-format": "^3.1.0",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-time-format": "^4.1.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@geoblocks/base": "^0.1.1",
"@vitest/coverage-v8": "^3.0.4",
"core-js": "^3.40.0",
"d3-shape": "^3.2.0",
"d3-transition": "^3.0.1",
"eslint": "^9.19.0",
"happy-dom": "^16.7.3",
"parcel": "^2.13.3",
"prettier": "^3.4.2",
"typedoc": "^0.27.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"vitest": "^3.0.4"
}
}