-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "@dynatrace/oneagent-sdk",
"version": "1.5.0",
"description": "Node.js SDK for Dynatrace OneAgent",
"engines": {
"node": ">= 10.0.0"
},
"main": "./lib/Sdk.js",
"types": "./lib/Sdk.d.ts",
"typings": "./lib/Sdk.d.ts",
"scripts": {
"clean": "rimraf build && rimraf lib",
"compile": "npm run compile:src && npm run compile:test",
"compile:src": "tsc -p ./src",
"compile:test": "tsc -p ./test",
"lint": "npm run tslint",
"tslint": "tslint --project test/tsconfig.json --format verbose",
"prepack": "npm run clean && npm run compile:src",
"test": "mocha -r source-map-support/register build/transpiled/test/*.js",
"check": "npm run clean && npm run compile && npm run test && npm run lint"
},
"bugs": {
"url": "https://github.com/Dynatrace/OneAgent-SDK-for-NodeJs/issues/"
},
"repository": "Dynatrace/OneAgent-SDK-for-NodeJs",
"homepage": "https://www.dynatrace.com/technologies/nodejs-monitoring/",
"keywords": [
"dynatrace",
"tracing",
"monitoring",
"performance",
"node.js",
"NodeJs",
"sdk",
"adk"
],
"devDependencies": {
"@types/mocha": "9.1.0",
"@types/node": "17.0.14",
"@types/sinon": "10.0.9",
"mocha": "9.2.2",
"rimraf": "3.0.2",
"sinon": "13.0.0",
"source-map-support": "0.5.21",
"tslint": "6.1.3",
"typescript": "4.5.5"
},
"author": "Dynatrace",
"license": "Apache-2.0"
}