forked from dailymotion/vast-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.28 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.28 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
53
{
"name": "vast-client",
"author": "Olivier Poitrey <rs@dailymotion.com>",
"contributors": [
"Elia Maino <eliamaino@gmail.com>"
],
"version": "2.0.3",
"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": ">=8.9.4"
},
"main": "dist/vast-client-node.min.js",
"module": "src/index.js",
"browser": {
"dist/vast-client.min.js": "dist/vast-client.min.js"
},
"scripts": {
"test": "mocha --compilers js:babel-core/register --reporter spec test/*.js",
"build": "webpack && webpack --env=dev && webpack --env=node && webpack --env=node-dev",
"precommit": "pretty-quick --staged"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.3",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"husky": "^0.14.3",
"mocha": "^5.1.1",
"path": "^0.12.7",
"prettier": "^1.11.1",
"pretty-quick": "^1.4.1",
"should": "^11.2.1",
"sinon": "^2.3.6",
"webpack": "^4.16.2",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"xmldom": "~0.1.27"
}
}