@equinor/videx-map 1.12.2 → 1.12.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/README.md +119 -119
- package/dist/WellboreModule.d.ts +2 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/utils/wellbores/data/Group.d.ts +4 -2
- package/package.json +89 -89
package/package.json
CHANGED
|
@@ -1,89 +1,89 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@equinor/videx-map",
|
|
3
|
-
"version": "1.12.
|
|
4
|
-
"description": "Component for Pixi-overlay in Leaflet.",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"module": "dist/index.esm.js",
|
|
7
|
-
"browser": "dist/index.umd.js",
|
|
8
|
-
"files": [
|
|
9
|
-
"dist"
|
|
10
|
-
],
|
|
11
|
-
"types": "dist/index.d.ts",
|
|
12
|
-
"scripts": {
|
|
13
|
-
"start": "start-storybook",
|
|
14
|
-
"prebuild": "rimraf dist",
|
|
15
|
-
"build": "rollup -c",
|
|
16
|
-
"prepub": "npm run build",
|
|
17
|
-
"pub": "npm publish --access=public",
|
|
18
|
-
"test": "jest",
|
|
19
|
-
"test:watch": "jest --watchAll",
|
|
20
|
-
"predocs": "rimraf docs",
|
|
21
|
-
"docs": "typedoc --out docs src",
|
|
22
|
-
"postdocs": "copyfiles images/* docs && copyfiles .nojekyll docs"
|
|
23
|
-
},
|
|
24
|
-
"repository": {
|
|
25
|
-
"type": "git",
|
|
26
|
-
"url": "git+https://github.com/equinor/videx-map.git"
|
|
27
|
-
},
|
|
28
|
-
"keywords": [
|
|
29
|
-
"videx",
|
|
30
|
-
"leaflet",
|
|
31
|
-
"pixi.js",
|
|
32
|
-
"typescript"
|
|
33
|
-
],
|
|
34
|
-
"author": "Tom Kristian Tjemsland",
|
|
35
|
-
"license": "MIT",
|
|
36
|
-
"bugs": {
|
|
37
|
-
"url": "https://github.com/equinor/videx-map/issues"
|
|
38
|
-
},
|
|
39
|
-
"homepage": "https://github.com/equinor/videx-map#readme",
|
|
40
|
-
"devDependencies": {
|
|
41
|
-
"@babel/core": "^7.11.6",
|
|
42
|
-
"@equinor/videx-storybook-input": "^1.0.0",
|
|
43
|
-
"@storybook/html": "^6.2.3",
|
|
44
|
-
"@types/d3": "^5.7.2",
|
|
45
|
-
"@types/earcut": "^2.1.1",
|
|
46
|
-
"@types/geojson": "^7946.0.3",
|
|
47
|
-
"@types/jest": "^26.0.13",
|
|
48
|
-
"@types/leaflet": "^1.5.17",
|
|
49
|
-
"@types/uuid": "^8.3.0",
|
|
50
|
-
"awesome-typescript-loader": "^5.2.1",
|
|
51
|
-
"babel-loader": "^8.1.0",
|
|
52
|
-
"copyfiles": "^2.3.0",
|
|
53
|
-
"d3": "^6.1.1",
|
|
54
|
-
"eslint": "^7.8.1",
|
|
55
|
-
"eslint-config-airbnb-base": "^14.2.0",
|
|
56
|
-
"eslint-plugin-import": "^2.22.0",
|
|
57
|
-
"jest": "^26.4.2",
|
|
58
|
-
"jest-canvas-mock": "^2.2.0",
|
|
59
|
-
"leaflet": "^1.7.1",
|
|
60
|
-
"leaflet-pixi-overlay": "^1.8.1",
|
|
61
|
-
"rimraf": "^3.0.2",
|
|
62
|
-
"rollup": "^2.45.2",
|
|
63
|
-
"rollup-plugin-node-resolve": "^5.2.0",
|
|
64
|
-
"rollup-plugin-terser": "^7.0.2",
|
|
65
|
-
"rollup-plugin-typescript2": "^0.30.0",
|
|
66
|
-
"simplex-noise": "^2.4.0",
|
|
67
|
-
"ts-jest": "^26.3.0",
|
|
68
|
-
"tslib": "^2.2.0",
|
|
69
|
-
"typedoc": "^0.20.28",
|
|
70
|
-
"typescript": "^4.2.4"
|
|
71
|
-
},
|
|
72
|
-
"jest": {
|
|
73
|
-
"transform": {
|
|
74
|
-
".(ts|tsx)": "ts-jest"
|
|
75
|
-
},
|
|
76
|
-
"testRegex": "(/tests/.*|(\\.|/)test)\\.ts$",
|
|
77
|
-
"setupFiles": [
|
|
78
|
-
"jest-canvas-mock"
|
|
79
|
-
]
|
|
80
|
-
},
|
|
81
|
-
"dependencies": {
|
|
82
|
-
"@equinor/videx-linear-algebra": "^1.0.7",
|
|
83
|
-
"@equinor/videx-math": "^1.1.0",
|
|
84
|
-
"@equinor/videx-vector2": "^1.0.44",
|
|
85
|
-
"earcut": "^2.2.2",
|
|
86
|
-
"pixi.js": "5.3.3",
|
|
87
|
-
"uuid": "^8.3.2"
|
|
88
|
-
}
|
|
89
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@equinor/videx-map",
|
|
3
|
+
"version": "1.12.4",
|
|
4
|
+
"description": "Component for Pixi-overlay in Leaflet.",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.esm.js",
|
|
7
|
+
"browser": "dist/index.umd.js",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"types": "dist/index.d.ts",
|
|
12
|
+
"scripts": {
|
|
13
|
+
"start": "start-storybook",
|
|
14
|
+
"prebuild": "rimraf dist",
|
|
15
|
+
"build": "rollup -c",
|
|
16
|
+
"prepub": "npm run build",
|
|
17
|
+
"pub": "npm publish --access=public",
|
|
18
|
+
"test": "jest",
|
|
19
|
+
"test:watch": "jest --watchAll",
|
|
20
|
+
"predocs": "rimraf docs",
|
|
21
|
+
"docs": "typedoc --out docs src",
|
|
22
|
+
"postdocs": "copyfiles images/* docs && copyfiles .nojekyll docs"
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/equinor/videx-map.git"
|
|
27
|
+
},
|
|
28
|
+
"keywords": [
|
|
29
|
+
"videx",
|
|
30
|
+
"leaflet",
|
|
31
|
+
"pixi.js",
|
|
32
|
+
"typescript"
|
|
33
|
+
],
|
|
34
|
+
"author": "Tom Kristian Tjemsland",
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"bugs": {
|
|
37
|
+
"url": "https://github.com/equinor/videx-map/issues"
|
|
38
|
+
},
|
|
39
|
+
"homepage": "https://github.com/equinor/videx-map#readme",
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@babel/core": "^7.11.6",
|
|
42
|
+
"@equinor/videx-storybook-input": "^1.0.0",
|
|
43
|
+
"@storybook/html": "^6.2.3",
|
|
44
|
+
"@types/d3": "^5.7.2",
|
|
45
|
+
"@types/earcut": "^2.1.1",
|
|
46
|
+
"@types/geojson": "^7946.0.3",
|
|
47
|
+
"@types/jest": "^26.0.13",
|
|
48
|
+
"@types/leaflet": "^1.5.17",
|
|
49
|
+
"@types/uuid": "^8.3.0",
|
|
50
|
+
"awesome-typescript-loader": "^5.2.1",
|
|
51
|
+
"babel-loader": "^8.1.0",
|
|
52
|
+
"copyfiles": "^2.3.0",
|
|
53
|
+
"d3": "^6.1.1",
|
|
54
|
+
"eslint": "^7.8.1",
|
|
55
|
+
"eslint-config-airbnb-base": "^14.2.0",
|
|
56
|
+
"eslint-plugin-import": "^2.22.0",
|
|
57
|
+
"jest": "^26.4.2",
|
|
58
|
+
"jest-canvas-mock": "^2.2.0",
|
|
59
|
+
"leaflet": "^1.7.1",
|
|
60
|
+
"leaflet-pixi-overlay": "^1.8.1",
|
|
61
|
+
"rimraf": "^3.0.2",
|
|
62
|
+
"rollup": "^2.45.2",
|
|
63
|
+
"rollup-plugin-node-resolve": "^5.2.0",
|
|
64
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
65
|
+
"rollup-plugin-typescript2": "^0.30.0",
|
|
66
|
+
"simplex-noise": "^2.4.0",
|
|
67
|
+
"ts-jest": "^26.3.0",
|
|
68
|
+
"tslib": "^2.2.0",
|
|
69
|
+
"typedoc": "^0.20.28",
|
|
70
|
+
"typescript": "^4.2.4"
|
|
71
|
+
},
|
|
72
|
+
"jest": {
|
|
73
|
+
"transform": {
|
|
74
|
+
".(ts|tsx)": "ts-jest"
|
|
75
|
+
},
|
|
76
|
+
"testRegex": "(/tests/.*|(\\.|/)test)\\.ts$",
|
|
77
|
+
"setupFiles": [
|
|
78
|
+
"jest-canvas-mock"
|
|
79
|
+
]
|
|
80
|
+
},
|
|
81
|
+
"dependencies": {
|
|
82
|
+
"@equinor/videx-linear-algebra": "^1.0.7",
|
|
83
|
+
"@equinor/videx-math": "^1.1.0",
|
|
84
|
+
"@equinor/videx-vector2": "^1.0.44",
|
|
85
|
+
"earcut": "^2.2.2",
|
|
86
|
+
"pixi.js": "5.3.3",
|
|
87
|
+
"uuid": "^8.3.2"
|
|
88
|
+
}
|
|
89
|
+
}
|