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
67 lines (67 loc) · 1.81 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
{
"name": "iabtcf",
"version": "1.0.0-beta.18",
"description": "Official compliant tool suite for implementing the iab. Transparency and Consent Framework (TCF).",
"private": true,
"workspaces": [
"modules/core",
"modules/testing",
"modules/cmpapi",
"modules/cli",
"modules/stub"
],
"author": "Chris Paterson <tcf@chrispaterson.io>",
"homepage": "https://github.com/chrispaterson/iabtcf",
"license": "Apache-2.0",
"scripts": {
"build": "yarn workspaces run build",
"bundle": "webpack --progress",
"version": "./bin/update-version $npm_package_version",
"prepublishOnly": "./bin/publish-version $npm_package_version",
"docs": "yarn workspace @iabtcf/core run docs && yarn workspace @iabtcf/cmpapi run docs",
"tidy": "rm -rf modules/**/lib coverage modules/**/coverage .nyc_output modules/**/.nyc_output modules/**/*.log",
"clean": "rm -rf node_modules modules/**/node_modules && yarn run tidy",
"lint": "yarn workspaces run lint",
"test": "yarn && mocha",
"debug": "ndb mocha",
"serve:cov": "npx http-server ./coverage/",
"test:cov": "rm -rf coverage; nyc --reporter html mocha",
"test:lcov": "nyc --reporter=lcov mocha",
"upload:lcov": "cat coverage/lcov.info | coveralls"
},
"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"
],
"devDependencies": {
"@babel/core": "^7.8.4",
"babel-loader": "^8.0.6",
"json": "^9.0.6",
"mocha": "6",
"promise-polyfill": "^8.1.3",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
}
}