forked from InteractiveAdvertisingBureau/iabtcf-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.27 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
{
"name": "@iabtcf/core",
"version": "1.5.3",
"description": "Ensures consistent encoding and decoding of TC Signals for the iab. Transparency and Consent Framework (TCF).",
"author": "Chris Paterson <tcf@chrispaterson.io>",
"homepage": "https://iabtcf.com/",
"license": "Apache-2.0",
"type": "module",
"main": "lib/cjs/index.js",
"types": "lib/mjs/index.d.ts",
"module": "lib/mjs/index.js",
"exports": {
".": {
"import": "./lib/mjs/index.js",
"require": "./lib/cjs/index.js"
}
},
"files": [
"lib/**/*"
],
"scripts": {
"preversion": "echo 'woops I think you meant to go to the root' && exit 1",
"build": "../build",
"lint": "eslint `find test src -name '*.ts'`",
"debug": "ndb mocha --no-timeouts",
"serve:cov": "npx http-server ./coverage/",
"test": "mocha",
"test-cov": "rm -rf coverage; nyc --reporter=html mocha"
},
"devDependencies": {
"@iabtcf/testing": "1.5.3",
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/sinon": "^10.0.11",
"@types/sinon-chai": "3.2.8",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^5.22.0",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"eslint": "6.8.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"jscover": "^1.0.0",
"jsdom": "16.5.0",
"jsdom-global": "3.0.2",
"mocha": "^9.2.0",
"mocha-lcov-reporter": "^1.3.0",
"ndb": "^1.1.5",
"nyc": "^14.1.1",
"sinon": "^13.0.1",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.12",
"terser": "^4.8.1",
"ts-node": "^10.5.0",
"typedoc": "^0.22.11",
"typescript": "4.5.5"
},
"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/InteractiveAdvertisingBureau/iabtcf-es.git",
"directory": "modules/core"
},
"dependencies": {}
}