forked from open-telemetry/opentelemetry.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.8 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
{
"spelling": "cSpell:ignore docsy hugo prebuild HTMLTEST precheck preinstall postbuild -",
"Notes": [
"The 'all' and 's' scripts are conveniences for use until the following",
"is fixed: https://github.com/mysticatea/npm-run-all/issues/209.",
"That is, from the command line, you can use, e.g.: npm run s <arguments>."
],
"scripts": {
"_build": "hugo --cleanDestinationDir -e dev -DFE",
"_check-links": "make check-links",
"_get:no": "echo SKIPPING get operation",
"_get:submodule": "set -x && git submodule update --init --recursive ${DEPTH:- --depth 1}",
"_get:submodule:non-lang": "npm run _get:submodule -- content-modules/opentelemetry-specification themes/docsy",
"_prebuild": "run-s get:submodule cp:spec",
"_serve:hugo": "hugo serve -DFE --minify",
"_serve": "netlify dev -c \"npm run _serve:hugo\"",
"all": "npm-run-all",
"build:preview": "set -x && npm run _build -- --minify --baseURL \"${DEPLOY_PRIME_URL:-/}\"",
"build:production": "hugo --cleanDestinationDir --minify",
"build": "npm run _build",
"check-links:all": "HTMLTEST_ARGS= npm run _check-links",
"check-links": "npm run _check-links",
"clean": "make clean",
"cp:spec": "./scripts/cp-spec-pages.sh",
"get:submodule": "npm run _get:${GET:-submodule}",
"postbuild:preview": "npm run _check-links",
"postbuild:production": "npm run _check-links",
"prebuild:preview": "npm run _prebuild",
"prebuild:production": "npm run _prebuild",
"prebuild": "npm run _prebuild",
"precheck-links:all": "npm run build",
"precheck-links": "npm run build",
"preinstall": "npm run get:submodule",
"preserve:hugo": "npm run _prebuild",
"preserve": "npm run _prebuild",
"s": "run-s",
"schemas:update": "npm run update:submodule content-modules/opentelemetry-specification",
"serve:hugo": "npm run _serve:hugo",
"serve": "npm run _serve",
"test": "npm run check-links",
"update:submodule": "set -x && git submodule update --remote --recursive ${DEPTH:- --depth 1}",
"update:submodule:lang": "run-s update:submodule _get:submodule:non-lang"
},
"private": true,
"devDependencies": {
"autoprefixer": "^10.4.2",
"hugo-extended": "0.92.2",
"netlify-cli": "^9.6.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.6",
"postcss-cli": "^9.1.0"
},
"dependencies": {
"@opentelemetry/api": "^1.0.1",
"@opentelemetry/auto-instrumentations-web": "^0.27.0",
"@opentelemetry/context-zone": "^1.0.1",
"@opentelemetry/core": "^1.0.1",
"@opentelemetry/exporter-trace-otlp-http": "^0.27.0",
"@opentelemetry/instrumentation": "^0.27.0",
"@opentelemetry/resources": "^1.0.1",
"@opentelemetry/sdk-trace-base": "^1.0.1",
"@opentelemetry/sdk-trace-web": "^1.0.1",
"@opentelemetry/semantic-conventions": "^1.0.1"
}
}