-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 914 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 914 Bytes
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
{
"name": "tc-string-parse",
"description": "Simple JavaScript parser for transparency and consent strings compatible with TCF 2.0.",
"version": "1.3.0",
"repository": {
"type": "git",
"url": "https://github.com/audienceproject/tc-string-parse"
},
"keywords": [
"tcf",
"transparency",
"consent",
"gdpr",
"cmp",
"iab"
],
"license": "Apache-2.0",
"main": "tc-string-parse.js",
"bin": "./cli.js",
"scripts": {
"test": "ava --verbose",
"lint": "eslint .",
"compress": "uglifyjs --compress --mangle -- tc-string-parse.js > tc-string-parse.min.js",
"prepublishOnly": "npm install && npm run test && npm run lint && npm run compress"
},
"dependencies": {},
"devDependencies": {
"Base64": "github:davidchambers/Base64.js",
"ava": "3.12.1",
"eslint": "7.7.0",
"uglify-js": "3.10.3"
},
"engines": {
"node": ">=5.10.0"
}
}