-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
86 lines (86 loc) · 2.65 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
{
"name": "rmp-vast",
"version": "16.1.1",
"author": "Radiant Media Player <support@radiantmediaplayer.com>",
"description": "A client-side JavaScript solution to load, parse and display VAST resources (advertising)",
"repository": {
"type": "git",
"url": "git+https://github.com/radiantmediaplayer/rmp-vast.git"
},
"main": "./dist/rmp-vast.js",
"types": "./types/js/index.d.ts",
"scripts": {
"test": "node ./test/run.mjs",
"test:patch": "node ./test/run.mjs patch",
"testAndroid": "node ./test/run.mjs android",
"testSafari": "node ./test/run.mjs safari",
"webpackbuild": "webpack --config webpack.production.config.js",
"dev": "webpack serve --config webpack.dev.config.js --hot",
"lint:browser": "npx eslint ./src/ ./test/ ./app/ ./eslint.config*",
"lint:node": "npx eslint --config eslint.config.node.mjs ./test/spec/main/ ./test/spec/helpers/ ./test/*.mjs ./webpack.*",
"lint": "npm run lint:browser && npm run lint:node",
"types": "npx -p typescript tsc",
"build": "npm run lint && npm run webpackbuild && npm run types"
},
"keywords": [
"vast",
"iab",
"simid",
"vpaid",
"advertising",
"advertisement",
"video",
"html5",
"javascript",
"mobile",
"ionic",
"electron",
"flutter",
"cordova",
"webview"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/radiantmediaplayer/rmp-vast/issues"
},
"homepage": "https://www.radiantmediaplayer.com/rmp-vast/app/",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.17.0",
"@stylistic/eslint-plugin": "^2.12.1",
"babel-loader": "^9.2.1",
"babel-plugin-polyfill-corejs3": "^0.11.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"eslint": "^9.17.0",
"eslint-webpack-plugin": "^4.2.0",
"globals": "^15.13.0",
"handlebars": "^4.7.8",
"handlebars-loader": "^1.7.3",
"html-webpack-plugin": "^5.6.3",
"ip": "^2.0.1",
"less": "^4.2.1",
"less-loader": "^12.2.0",
"open": "^10.1.0",
"postcss-less": "^6.0.0",
"selenium-webdriver": "^4.27.0",
"style-loader": "^4.0.0",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-webpack-plugin": "^5.0.1",
"terser": "^5.37.0",
"terser-webpack-plugin": "^5.3.11",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.26.0",
"@types/node": "^22.10.2",
"core-js-pure": "^3.39.0",
"whatwg-fetch": "^3.6.20"
}
}