-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.96 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@newrelic/video-core",
"version": "5.1.0",
"description": "New Relic video tracking core library",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./browser": {
"types": "./dist/types/browser/index.d.ts",
"import": "./dist/esm/browser/index.js",
"require": "./dist/cjs/browser/index.js"
},
"./vega": {
"types": "./dist/types/connectedDevice/index.d.ts",
"import": "./dist/esm/vega/index.js",
"require": "./dist/cjs/vega/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "webpack --mode production && npm run build:types",
"build:types": "tsc --emitDeclarationOnly",
"build:dev": "webpack --mode development",
"watch": "webpack --mode production --progress --color --watch",
"watch:dev": "webpack --progress --color --watch",
"clean": "rm -rf dist coverage doc",
"test": "jest --coverage",
"doc": "jsdoc -c jsdoc.json -d documentation",
"deploy": "node scripts/deploy.js",
"third-party-updates": "oss third-party manifest --includeOptDeps && oss third-party notices --includeOptDeps && git add THIRD_PARTY_NOTICES.md third_party_manifest.json"
},
"repository": {
"type": "git",
"url": "https://github.com/newrelic/video-core-js"
},
"author": "Jordi Aguilar",
"contributors": [
"Andreu Santarén Llop",
"Malay Chandan",
"Bharat Sarsawat"
],
"license": "Apache-2.0",
"sideEffects": false,
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.29.7",
"@babel/register": "^7.24.6",
"@newrelic/newrelic-oss-cli": "^0.1.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.3",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^13.0.0",
"babel-jest": "^30.0.0",
"babel-loader": "^9.1.3",
"conventional-changelog-conventionalcommits": "^7.0.2",
"diff": "^5.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jsdom": "^25.0.1",
"mocha": "^11.0.0",
"nyc": "^18.0.0",
"semantic-release": "^25.0.8",
"sinon": "^2.4.1",
"typescript": "^7.0.2",
"webpack": "^5.91.0",
"webpack-cli": "^4.9.2"
},
"files": [
"THIRD_PARTY_NOTICES.md",
"dist",
"src",
"CHANGELOG.md",
"LICENSE",
"README.md",
"src",
"__mock__.js",
"!test"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"terser-webpack-plugin": "^5.6.1"
},
"overrides": {
"ip-address": "^10.3.1",
"serialize-javascript": "^7.0.5",
"undici": "^6.28.0"
}
}