-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
86 lines (86 loc) · 2.49 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
{
"private": false,
"name": "@equinor/videx-wellog",
"version": "0.10.8",
"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": "jest",
"test:watch": "jest --watchAll",
"predocs": "rimraf docs",
"docs": "typedoc --out docs src",
"postdocs": "copyfiles .nojekyll docs",
"lint": "npx eslint src --ext ts --color --format table",
"storybook": "cd examples/storybook && npm run storybook",
"storybook:install": "cd examples/storybook && npm install"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/chai": "^4.2.11",
"@types/d3-array": "^3.0.3",
"@types/d3-scale": "^4.0.2",
"@types/d3-selection": "^3.0.3",
"@types/d3-shape": "^3.1.0",
"@types/d3-zoom": "^3.0.1",
"@types/jest": "^29.5.5",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"autoprefixer": "^10.4.18",
"chai": "^4.4.1",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-formatter-table": "^7.32.1",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^3.0.2",
"rollup": "^4.22.4",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.34.0",
"sass": "^1.77.6",
"ts-jest": "^29.1.2",
"tslib": "^2.4.0",
"typedoc": "^0.25.12",
"typescript": "^4.8.3"
},
"dependencies": {
"@equinor/videx-math": "^1.1.0",
"d3-array": "^3.2.0",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.1.0",
"d3-zoom": "^3.0.0"
}
}