-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
96 lines (96 loc) · 2.15 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
87
88
89
90
91
92
93
94
95
96
{
"author": "Justin Gosses",
"bugs": {
"url": "https://github.com/JustinGOSSES/wellioviz/issues"
},
"dependencies": {
"browserfy": "^1.0.0",
"d3": "^7.9.0",
"npm": "^10.8.1",
"wellio": "^0.1.8"
},
"description": "Provides functionality to visualize well logs, particularly those already converted to JSON, using d3.js visualization library.",
"devDependencies": {
"browserify": "^16.5.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-google": "^0.9.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"tape": "~4.9.0",
"jest": "^29.7.0"
},
"directories": {
"doc": "docs",
"dist": "dist"
},
"files": [
"dist/test/data_for_testing.js",
"dist/test/test.LAS",
"dist/index.js",
"dist/log_style_templates/",
"dist/fill_templates/",
"dist/track_templates/",
"dist/well_log_templates/",
"dist/well_section_templates/",
"dist/base_template.js",
"dist/test/log_templates.test.js"
],
"homepage": "https://github.com/JustinGOSSES/wellioviz",
"jest": {
"verbose": true,
"roots": [
"./dist/test/",
"./dist/",
"./dist/log_style_templates/",
"./"
],
"modulePathIgnorePatterns": [
"./examples/"
],
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
]
},
"keywords": [
"LAS",
"LAS2.0",
"Well",
"Well-log",
"log",
"geology",
"stratigraphy",
"geoscience",
"IO",
"well",
"welllog",
"Log",
"geology",
"welly",
"lasio",
"visualization",
"plotting",
"web",
"d3.js"
],
"license": "Apache-2.0",
"main": "dist/index.js",
"name": "wellioviz",
"repository": {
"type": "git",
"url": "git+https://github.com/JustinGOSSES/wellioviz.git"
},
"scripts": {
"test": "jest",
"make_bundle": "cd docs/js && browserify call_plots.js main.js get_wellio.js vkbeautify.js -o bundle.js"
},
"unpkg": "dist/index.js",
"version": "0.0.34"
}