-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.77 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "skywalking-agent-node",
"version": "0.0.1",
"description": "The NodeJS agent for Apache SkyWalking",
"homepage": "skywalking.apache.org",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"prepare": "npm run generate-source",
"generate-source": "scripts/protoc.sh",
"build": "npm run clean && npm run prepare && tsc --build src && OUT_DIR=lib/proto/ scripts/protoc.sh",
"lint": "tslint -p src/tsconfig.json src/**/*.ts",
"test": "DEBUG=testcontainers* jest",
"format": "prettier --write \"src/**/*.ts\"",
"clean": "(rm -rf src/proto || true) && (rm -rf src/proto || true) && (rm -rf lib || true)",
"package-src": "tar -zcvf skywalking-agent-node-src-$npm_package_version.tgz --exclude bin --exclude .git --exclude .idea --exclude .DS_Store --exclude .github --exclude node_modules --exclude skywalking-agent-node-src-$npm_package_version.tgz .",
"release-src": "npm run prepare && npm run package-src && gpg --batch --yes --armor --detach-sig skywalking-agent-node-src-$npm_package_version.tgz && shasum -a 512 skywalking-agent-node-src-$npm_package_version.tgz > skywalking-agent-node-src-$npm_package_version.tgz.sha512"
},
"files": [
"lib/**/*",
"README.md"
],
"keywords": [
"SkyWalking",
"APM",
"Dapper",
"Tracing",
"Agent",
"Opentelemetry",
"Instrumentation"
],
"author": "Apache SkyWalking Team",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/chzhuo/skywalking-agent-node"
},
"bugs": {
"url": "https://github.com/chzhuo/skywalking-agent-node/issues"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/google-protobuf": "^3.7.2",
"@types/graphql": "^14.5.0",
"@types/ioredis": "^4.26.4",
"@types/jest": "^26.0.15",
"@types/node": "^14.0.11",
"@types/semver": "^7.2.0",
"@types/uuid": "^8.0.0",
"amqplib": "^0.7.0",
"grpc_tools_node_protoc_ts": "^5.3.0",
"grpc-tools": "^1.11.1",
"jest": "^26.6.3",
"prettier": "^2.0.5",
"testcontainers": "^6.2.0",
"ts-jest": "^26.4.4",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.4",
"wait-for-expect": "^3.0.2"
},
"dependencies": {
"@grpc/grpc-js": "^1.4.4",
"@opentelemetry/api": "^1.0.3",
"@opentelemetry/auto-instrumentations-node": "^0.27.1",
"@opentelemetry/context-async-hooks": "^1.0.1",
"@opentelemetry/core": "^1.0.1",
"@opentelemetry/instrumentation": "^0.27.0",
"@opentelemetry/resources": "^1.0.1",
"@opentelemetry/semantic-conventions": "^1.0.1",
"google-protobuf": "^3.14.0",
"semver": "^7.3.2",
"tslib": "^2.0.3",
"uuid": "^8.1.0",
"winston": "^3.2.1"
}
}