-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 963 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 963 Bytes
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
{
"name": "tps-site",
"version": "1.0.0",
"private": true,
"description": "Build pipeline for the TPS documentation site.",
"type": "module",
"scripts": {
"build": "npm run build:site && npm run build:sdk",
"build:site": "node scripts/build-site.mjs",
"build:sdk": "node SDK/scripts/run-runtimes.mjs build",
"build:tps": "npm --prefix SDK/js run build:tps",
"test": "npm run test:sdk",
"test:sdk": "node SDK/scripts/run-runtimes.mjs test",
"test:js": "npm --prefix SDK/js run test:js",
"test:types": "npm --prefix SDK/js run test:types",
"coverage:js": "npm --prefix SDK/js run coverage:js",
"coverage:sdk": "node SDK/scripts/run-runtimes.mjs coverage",
"sdk:matrix": "npm --prefix SDK/js run sdk:matrix",
"sdk:coverage-matrix": "npm --prefix SDK/js run sdk:coverage-matrix"
},
"dependencies": {
"highlight.js": "^11.11.1",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0"
}
}