-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.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
{
"name": "composition-plot",
"version": "0.0.1",
"description": "Composition Plots",
"main": "dist/index.js",
"module": "dist/index.js",
"sideEffects": false,
"files": [
"dist/"
],
"scripts": {
"build": "npm run build:src && npm run build:types",
"build:src": "tsc",
"build:types": "tsc --emitDeclarationOnly",
"watch": "tsc -w",
"build:docs": "npm run build:types && api-extractor run --local --verbose && api-documenter markdown -i=docs/input -o=docs/output",
"deploy:docs": "npm run build:docs && gh-pages -d docs/output",
"prepare": "npm run build"
},
"dependencies": {
"@colormap/core": "^0.1.0-3",
"@kitware/vtk.js": "^19.0.4",
"@openchemistry/utils": "^0.6.4",
"d3-array": "^3.0.1",
"d3-axis": "^3.0.0",
"d3-scale": "^4.0.0",
"d3-selection": "^3.0.0",
"d3-shape": "^3.0.1",
"d3-transition": "^3.0.1",
"lodash-es": "^4.17.10",
"plotly.js": "^2.3.0"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.13.23",
"@microsoft/api-extractor": "^7.16.1",
"@openchemistry/types": "^0.8.4",
"@types/d3-array": "^3.0.1",
"@types/d3-axis": "^3.0.1",
"@types/d3-scale": "^4.0.1",
"@types/d3-selection": "^3.0.0",
"@types/d3-shape": "^3.0.2",
"@types/d3-transition": "^3.0.1",
"@types/lodash-es": "^4.17.1",
"@types/humanize-duration": "^3.27.1",
"gh-pages": "^3.2.3",
"typescript": "^4.3.5"
},
"author": "Alessandro Genova, Kitware Inc.",
"license": "BSD-3-Clause"
}