-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 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
{
"name": "plot",
"description": "The simplest plotting API for JavaScript and TypeScript.",
"scripts": {
"update-readme": "cp README.md packages/plot",
"docs": "rm -rf ./markdown && npm run gen-nested-docs && npm run process-docs && cd docs-src && npm run build && rm -rf ../docs && mv ./build ../docs",
"build-nested-docs": "npm run docs --prefix ./packages/serialization && npm run docs --prefix ./packages/chart-def && npm run docs --prefix ./packages/lib-apex && npm run docs --prefix ./packages/render-dom && npm run docs --prefix ./packages/render-image && npm run docs --prefix ./packages/plot",
"gen-nested-docs": "npm run build-nested-docs && api-documenter markdown",
"process-docs": "node process-docs.js",
"build-docs": "cd docs-src && npm run build",
"serve-docs": "cd docs-src && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/data-forge-notebook/plot.git"
},
"keywords": [
"javascript",
"typescript",
"plot",
"data",
"visualization",
"visualisation",
"analysis"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/data-forge-notebook/plot/issues"
},
"homepage": "https://github.com/data-forge-notebook/plot#readme",
"dependencies": {},
"devDependencies": {
"@microsoft/api-documenter": "^7.12.3",
"fs-extra": "^9.1.0"
}
}