-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.28 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "vast-library",
"version": "0.0.0",
"description": "An intuitive standard IAB Vast XML generation API. Complient with specifications Vast 2.0 / 3.0 / 4.0 / 4.1",
"author": "David Babel",
"thanks": "https://www.paypal.me/devilhunter/4",
"engines": {
"node": ">= 8"
},
"main": "common/index.js",
"browser": {
"./common/utils/fetch.js": "./common/utils/fetch.browser.js"
},
"types": "@types/globals.type.d.ts",
"scripts": {
"start": "open ./coverage/lcov-report/index.html",
"build": "npm-run-all clean build-api build-ts",
"clean": "npm-run-all clean-*",
"build-ts": "tsc",
"clean-ts": "tsc --build --clean",
"test": "RUN_PUPPETEER_TESTS=true jest --coverage",
"test:watch": "jest --watch",
"build-api": "npm-run-all build-v*",
"clean-api": "rimraf ./build ./generated",
"build-v2": "ts-node ./bin/build.ts 2_0",
"build-v3": "ts-node ./bin/build.ts 3_0",
"build-v4": "ts-node ./bin/build.ts 4_0",
"build-v4_1": "ts-node ./bin/build.ts 4_1",
"build-types": "ts-node ./bin/build-types.ts",
"delete-fixtures": "rimraf ./tests/**/fixtures/*.xml",
"depcheck": "depcheck . --ignores=\"@types/*,puppeteer,jest-puppeteer\" --ignore-bin-package=true --skip-missing=true",
"circular-dependencies": "madge --circular ./common ./builder ./parser ./validator",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.{js,json}": [
"prettier --write",
"git add"
]
},
"jest": {
"preset": "jest-puppeteer",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"/build/",
"/generated/",
"/tests/"
]
},
"dependencies": {
"array-flatten": "^2.1.2",
"axios": "^0.19.2",
"browser-or-node": "^1.2.1",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@airbnb/node-memwatch": "^1.0.2",
"@types/array-unique": "^0.3.0",
"@types/browserify": "^12.0.36",
"@types/expect-puppeteer": "^3.3.1",
"@types/fs-extra": "^5.1.0",
"@types/jest": "^24.0.12",
"@types/jest-environment-puppeteer": "^4.0.0",
"@types/js-yaml": "^3.12.1",
"@types/nock": "^10.0.2",
"@types/prettier": "^1.16.3",
"@types/puppeteer": "^1.12.4",
"array-unique": "^0.3.2",
"browserify": "^16.2.3",
"codecov": "^3.4.0",
"depcheck": "^0.8.0",
"fs-extra": "^8.0.0",
"http-server": "^0.11.1",
"husky": "^2.2.0",
"jest": "^24.8.0",
"jest-puppeteer": "^4.1.1",
"js-yaml": "^3.13.1",
"lint-staged": "^8.1.6",
"madge": "^3.4.4",
"nock": "^10.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"puppeteer": "^1.15.0",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"tsify": "^4.0.1",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5"
},
"repository": {
"type": "github",
"url": "https://github.com/DavidBabel/vast-library"
},
"license": "MIT",
"keywords": [
"ad",
"ads",
"adtech",
"advertisement",
"advertising",
"vast",
"vast2",
"vast3",
"vast4",
"xml",
"client",
"generate",
"generator",
"generation",
"validate",
"validator",
"validation",
"iab",
"video",
"wrapper",
"standard",
"api"
]
}