This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
forked from InteractiveAdvertisingBureau/iabtcf-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.62 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
{
"name": "@iabtcf/cmpapi",
"version": "1.0.0-beta.18",
"description": "Ensures other in-page digital marketing technologies have access to CMP transparency and consent information for the iab. Transparency and Consent Framework (TCF).",
"author": "Chris Paterson <tcf@chrispaterson.io>",
"homepage": "https://github.com/chrispaterson/iabtcf/tree/master/cmpapi/",
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"docs": "typedoc --ignoreCompilerErrors --tsconfig ./tsconfig.json src",
"prepack": "yarn run build",
"build": "../build",
"bundle": "webpack --progress",
"lint": "eslint `find test src -name '*.ts'`",
"lint:fix": "yarn run lint -- --fix",
"debug": "ndb yarn test --no-timeouts",
"serve:cov": "npx http-server ./coverage/",
"test": "mocha `find test -name '*.test.ts'`",
"test:cov": "rm -rf coverage; nyc --reporter=html mocha `find test -name '*.test.ts'`",
"test:lcov": "nyc --reporter=lcov mocha `find test -name '*.test.ts'`"
},
"dependencies": {
"@iabtcf/core": "1.0.0-beta.18"
},
"devDependencies": {
"@iabtcf/stub": "1.0.0-beta.18",
"@iabtcf/testing": "1.0.0-beta.18",
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/mocha": "^5.2.7",
"@types/sinon": "7.0.13",
"@types/sinon-chai": "3.2.2",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"chai": "^4.2.0",
"coveralls": "^3.0.4",
"eslint": "6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-json": "^2.0.1",
"jscover": "^1.0.0",
"jsdom": "15.1.1",
"jsdom-global": "3.0.2",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.3.0",
"ndb": "^1.1.4",
"nyc": "^14.1.1",
"sinon": "^8.0.1",
"sinon-chai": "3.3.0",
"source-map-support": "^0.5.12",
"terser": "^4.6.3",
"ts-node": "^8.5.4",
"typedoc": "^0.14.2",
"typescript": "^3.7.0"
},
"eslintIgnore": [
"lib"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"interactive",
"advertising",
"bureau",
"iab",
"transparency",
"consent",
"consentstring",
"tcstring",
"gvl",
"vendor",
"framework",
"tcf",
"lib",
"library",
"cmp",
"2.0",
"v2.0",
"v2",
"software",
"development",
"api",
"kit",
"sdk",
"gdpr"
],
"repository": {
"type": "git",
"url": "https://github.com/chrispaterson/iabtcf.git",
"directory": "modules/cmpapi"
},
"gitHead": "fb56d5db3fbb56677a07bc99fec207394476d87f"
}