-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "@edx/frontend-logging",
"version": "1.0.0-semantically-released",
"description": "edX Frontend logging client code for sending logging and events to Datadog",
"main": "index.js",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "make build",
"lint": "fedx-scripts eslint --ext .js --ext .jsx .",
"test": "TZ=UTC fedx-scripts jest --coverage --passWithNoTests",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edx/frontend-logging.git"
},
"author": "edX",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/edx/frontend-logging/issues"
},
"homepage": "https://github.com/edx/frontend-logging#readme",
"dependencies": {
"@datadog/browser-logs": "^5.17.1",
"@datadog/browser-rum": "^5.17.1"
},
"devDependencies": {
"@openedx/frontend-build": "^14.1.5"
},
"peerDependencies": {
"@edx/frontend-platform": "^5.0.0 ||^6.0.0 || ^7.0.0 || ^8.0.0"
}
}