-
Notifications
You must be signed in to change notification settings - Fork 216
/
package.json
70 lines (70 loc) · 1.82 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
{
"name": "@dailymotion/vast-client",
"author": "Dailymotion <[email protected]> (https://developer.dailymotion.com/)",
"version": "6.0.1",
"description": "JavaScript VAST Client",
"keywords": [
"vast",
"ad",
"advertising",
"iab",
"in-stream",
"video"
],
"repository": {
"type": "git",
"url": "https://github.com/dailymotion/vast-client-js"
},
"license": "MIT",
"engines": {
"node": ">=12.22.1"
},
"browserslist": [
"chrome >= 63",
"firefox >= 67",
"edge >= 79",
"safari >= 12.1"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"main": "dist/vast-client-node.min.js",
"browser": "dist/vast-client.min.js",
"scripts": {
"performance": "node performance/performance_test.js",
"prebuild": "rm -rf dist_old && mkdir dist_old && cp -a dist/. dist_old/",
"build": "rollup -c",
"watch": "rollup -c --watch",
"postbuild": "node bundle_size.js",
"lint": "eslint .",
"precommit": "eslint . --max-warnings 0 && pretty-quick --staged",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.16.9",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"babel-eslint": "^10.1.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"canvas": "^2.9.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^8.0.3",
"jest": "^26.6.3",
"path": "^0.12.7",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"rollup": "^2.66.1",
"rollup-plugin-terser": "^7.0.2",
"should": "^13.2.3",
"sinon": "^2.4.1"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.3"
}
}