-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
126 lines (126 loc) · 4.39 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"author": "LiveIntent",
"repository": {
"type": "git",
"url": "git+https://github.com/liveintent-berlin/live-connect.git"
},
"description": "LiveConnect, The first party identity provider",
"version": "7.1.0",
"versionPrefix": "live-connect-v",
"license": "Apache-2.0",
"private": false,
"name": "live-connect-js",
"engines": {
"node": ">=20"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./internal": {
"types": "./dist/internal.d.ts",
"require": "./dist/internal.cjs",
"import": "./dist/internal.mjs"
},
"./prebid": {
"types": "./dist/index.d.ts",
"require": "./dist/prebid.cjs",
"import": "./dist/prebid.mjs"
},
"./package.json": "./package.json"
},
"files": [
"dist/*",
"src/*",
"COLLECTOR_PARAMS.md",
"CONFIGURATION_OPTIONS.md"
],
"scripts": {
"test:unit": "npm run lint && mocha --config test-config/mocha.unit.json",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test:it:browserstack": "npm run build-test-resources && wdio test-config/wdio.browserstack.conf.js",
"test:it:local-chrome": "npm run build-test-resources && wdio test-config/wdio.local-chrome.conf.js",
"build": "rollup --failAfterWarnings -c rollup/dist.config.js",
"build-test-resources": "rollup --failAfterWarnings -c rollup/test-resources.config.js",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"fix-js": "eslint --fix 'src/**/*.ts' 'test/**/*.ts' || exit 0",
"release:ci:prepatch": "release-it patch --preRelease=alpha-$(git rev-parse --short HEAD) --ci",
"release:ci:preminor": "release-it minor --preRelease=alpha-$(git rev-parse --short HEAD) --ci",
"release:ci:premajor": "release-it major --preRelease=alpha-$(git rev-parse --short HEAD) --ci",
"release:ci:bump-prerelease": "release-it --preRelease --ci",
"release:ci:alpha->beta": "release-it --preRelease=beta --ci",
"release:ci:beta->rc": "release-it --preRelease=rc --ci",
"release:ci:patch": "release-it patch --ci",
"release:ci:minor": "release-it minor --ci",
"release:ci:major": "release-it major --ci"
},
"dependencies": {
"live-connect-common": "^v4.1.0",
"tiny-hashes": "1.0.1"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/runtime-corejs3": "^7.24.7",
"@kineticcafe/rollup-plugin-delete": "^3.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/chai": "^4.3.16",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/dirty-chai": "^2.0.4",
"@types/express": "^5.0.0",
"@types/js-cookie": "^3.0.6",
"@types/jsdom-global": "^3.0.7",
"@types/mocha": "^10.0.7",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@wdio/browserstack-service": "^9.0.1",
"@wdio/cli": "^8.39.1",
"@wdio/junit-reporter": "^9.0.8",
"@wdio/local-runner": "^8.39.1",
"@wdio/mocha-framework": "^9.0.0",
"@wdio/spec-reporter": "^9.0.8",
"babel-plugin-polyfill-corejs3": "^0.10.4",
"chai": "^4.4.1",
"chai-spies": "^1.1.0",
"compression": "^1.7.4",
"core-js-pure": "^3.37.1",
"cors": "^2.8.5",
"dirty-chai": "^2.0.1",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-typescript-formatter": "1.0.0",
"eslint-plugin-wdio": "^9.0.5",
"express": "^4.19.2",
"global-jsdom": "^25.0.0",
"live-connect-handlers": "^3.1.0",
"mocha": "^10.6.0",
"mocha-junit-reporter": "^2.2.1",
"release-it": "^17.4.1",
"rollup": "^4.18.0",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-dts": "^6.1.1",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0",
"tiny-uuid4": "^1.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"url": "^0.11.3"
}
}