forked from InteractiveAdvertisingBureau/iabtcf-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.72 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
{
"name": "@iabtechlabtcf/cli",
"version": "1.5.13",
"description": "Decode a iab TCF (Transparency and Consent Framework) TC String via the command line",
"author": "Mayank Mishra <[email protected]>",
"homepage": "https://iabtcf.com/",
"license": "Apache-2.0",
"bin": {
"tcstring": "./lib/cjs/index.js"
},
"type": "module",
"main": "lib/cjs/index.js",
"module": "lib/mjs/index.js",
"exports": {
".": {
"import": "./lib/mjs/index.js",
"require": "./lib/cjs/index.js"
}
},
"types": "lib/mjs/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"preversion": "echo 'woops I think you meant to go to the root' && exit 1",
"build": "../build ; chmod a+x lib/mjs/index.js ; chmod a+x lib/cjs/index.js",
"lint": "eslint `find src -name '*.ts'`"
},
"dependencies": {
"@iabtechlabtcf/core": "1.5.13"
},
"devDependencies": {
"@types/node": "18.17.4",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "6.8.0",
"source-map-support": "^0.5.12",
"ts-node": "10.9.1",
"typedoc": "0.24.8",
"typescript": "4.9.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/cli"
}
}