-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "@dailymotion/vmap",
"author": "Dailymotion <vast-client@dailymotion.com> (https://developer.dailymotion.com/)",
"version": "3.3.1",
"description": "Javascript VMAP Parser",
"keywords": [
"vmap",
"ad",
"advertising",
"iab",
"in-stream",
"video"
],
"repository": {
"type": "git",
"url": "https://github.com/dailymotion/vmap-js"
},
"license": "MIT",
"engines": {
"node": ">=12.22.1"
},
"main": "dist/vmap-js-node.js",
"module": "src/index.js",
"scripts": {
"test": "jest",
"build": "rollup -c rollup.config.js",
"precommit": "eslint --fix . && pretty-quick --staged",
"dev": "rollup -c rollup.config.js --watch",
"lint": "eslint --fix . && prettier --write \"**/*.js\""
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"@rollup/plugin-babel": "^6.0.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-no-for-of-loops": "^1.0.1",
"husky": "^8.0.3",
"jest": "^29.1.2",
"path": "^0.12.7",
"prettier": "2.2.1",
"pretty-quick": "^3.1.0",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2",
"xmldom": "github:xmldom/xmldom#0.7.0"
}
}