-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (52 loc) · 1.09 KB
/
package.json
File metadata and controls
53 lines (52 loc) · 1.09 KB
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
{
"name": "@mixpeek/iab-mapper",
"version": "1.0.0",
"description": "Local IAB Content Taxonomy 2.x -> 3.0 mapper with vectors, SCD, OpenRTB/VAST exporters for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"data",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"iab",
"taxonomy",
"content",
"openrtb",
"ctv",
"classification",
"advertising",
"vast"
],
"author": "Mixpeek",
"license": "BSD-2-Clause",
"homepage": "https://github.com/mixpeek/iab-mapper",
"repository": {
"type": "git",
"url": "git+https://github.com/mixpeek/iab-mapper.git"
},
"bugs": {
"url": "https://github.com/mixpeek/iab-mapper/issues"
},
"dependencies": {
"fuzzball": "^2.1.2"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"jest": "^29.0.0",
"@types/jest": "^29.0.0",
"ts-jest": "^29.0.0"
},
"engines": {
"node": ">=14.0.0"
}
}