-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.5 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.5 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
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
{
"private": false,
"name": "@equinor/videx-wellog",
"version": "1.3.5",
"type": "module",
"license": "MIT",
"description": "Visualisation components for wellbore log data",
"repository": "https://github.com/equinor/videx-wellog",
"bugs": {
"url": "https://github.com/equinor/videx-wellog/issues"
},
"author": "Kjerand Pedersen",
"keywords": [
"wellog",
"graph",
"track",
"wellbore",
"visualisation",
"videx"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"start": "rollup -c -w",
"prebuild": "rimraf dist",
"build": "rollup -c",
"prepub": "npm run build",
"pub": "npm publish --access=public",
"prepublishbeta": "npm run build",
"publishnpm instbeta": "npm publish --tag beta --access=public",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"predocs": "rimraf docs",
"docs": "typedoc --out docs src",
"postdocs": "copyfiles .nojekyll docs",
"lint": "npx eslint src --ext ts --color",
"storybook": "cd examples/storybook && npm run storybook",
"storybook:install": "cd examples/storybook && npm install",
"storybook:build": "cd examples/storybook && npm run build-storybook"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/chai": "^5.2.3",
"@types/d3-array": "^3.2.2",
"@types/d3-scale": "^4.0.9",
"@types/d3-selection": "^3.0.11",
"@types/d3-shape": "^3.1.7",
"@types/d3-zoom": "^3.0.8",
"@vitest/coverage-v8": "^4.0.17",
"autoprefixer": "^10.4.22",
"chai": "^6.2.1",
"copyfiles": "^2.4.1",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"jsdom": "^27.2.0",
"prettier": "3.7.4",
"rimraf": "^6.1.2",
"rollup": "^4.52.4",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-glslify": "^1.3.1",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.94.1",
"tslib": "^2.8.1",
"typedoc": "^0.28.14",
"typescript": "^5.9.3",
"typescript-eslint": "^8.51.0",
"vitest": "^4.0.17"
},
"dependencies": {
"@equinor/videx-math": "^1.1.4",
"d3-array": "^3.2.4",
"d3-color": "^3.1.0",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-zoom": "^3.0.0",
"yaml": "^2.8.1"
}
}