forked from equinor/videx-wellog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.08 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
{
"private": false,
"name": "@equinor/videx-wellog",
"version": "0.4.5",
"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.js",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"@types/chai": "^4.2.11",
"@types/d3": "^5.7.2",
"@types/mocha": "^5.2.7",
"@typescript-eslint/parser": "^2.28.0",
"autoprefixer": "^9.7.6",
"chai": "^4.2.0",
"copyfiles": "^2.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"jsdom": "^15.2.1",
"mocha": "^6.2.3",
"node-sass": "^6.0.1",
"rimraf": "^3.0.2",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.8.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.2",
"ts-node": "^8.8.2",
"typedoc": "^0.15.8",
"typedoc-neo-theme": "^1.0.8",
"typescript": "^3.8.3"
},
"dependencies": {
"d3": "^5.16.0",
"resize-observer-polyfill": "^1.5.1"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"prepub": "npm run build",
"pub": "npm publish --access=public",
"test": "mocha",
"test:watch": "mocha --reporter min --watch --watch-extensions ts",
"predocs": "rimraf docs",
"docs": "typedoc --out docs src --module es5",
"postdocs": "copyfiles .nojekyll docs",
"lint": "npx eslint src --ext ts --color --format table"
},
"files": [
"dist"
],
"types": "dist/index.d.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}