-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.11 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
{
"name": "@geoblocks/d3-helper",
"version": "1.3.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"
],
"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": "jest --coverage"
},
"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": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@geoblocks/base": "^0.1.1",
"@jest/globals": "^29.4.1",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"babel-jest": "^29.5.0",
"core-js": "^3.30.2",
"d3-shape": "^3.2.0",
"d3-transition": "^3.0.1",
"eslint": "^8.42.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"parcel": "^2.9.1",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"tslib": "^2.5.3",
"typedoc": "^0.24.8",
"typescript": "^5.1.3"
}
}