forked from hpcc-systems/HPCC-Platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.37 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.37 KB
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
{
"name": "hpcc-platform",
"private": true,
"type": "commonjs",
"scripts": {
"clean": "rimraf ./devdoc/.vitepress/cache ./devdoc/.vitepress/dist",
"copy-png": "cp ./devdoc/*.png ./devdoc/.vitepress/dist/devdoc",
"copy-ico": "cp ./devdoc/*.ico ./devdoc/.vitepress/dist/devdoc",
"copy-res": "run-p copy-png copy-ico",
"dev-docs": "vitepress dev devdoc",
"build-docs": "vitepress build devdoc",
"preview-docs": "vitepress preview devdoc",
"docs-dev": "npm run dev-docs",
"docs-build": "npm run build-docs",
"docs-preview": "npm run preview-docs",
"convert": "pandoc -w markdown -o ./docs/DOCUMENTATION.md ./docs/DOCUMENTATION.rst",
"build": "run-s build-docs copy-res",
"watch": "vitepress dev devdoc",
"preview": "npm run preview-docs",
"test": "node testing/devdoc/check-links.js --base-prefix /HPCC-Platform",
"update": "npx npm-check-updates -u -t minor",
"update-major": "npx npm-check-updates -u"
},
"devDependencies": {
"@hpcc-js/markdown-it-plugins": "1.3.10",
"npm-run-all": "4.1.5",
"rimraf": "6.0.1",
"vitepress": "1.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hpcc-systems/HPCC-Platform.git"
},
"author": "hpcc-systems",
"license": "Apache-2.0",
"bugs": {
"url": "https://hpccsystems.atlassian.net/"
},
"homepage": "https://hpccsystems.com"
}