forked from dailymotion/vast-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "vast-client",
"author": "Olivier Poitrey <rs@dailymotion.com>",
"version": "1.7.3",
"description": "Javascript VAST Client",
"keywords": [
"vast",
"ad",
"advertising",
"iab",
"in-stream",
"video"
],
"repository": {
"type": "git",
"url": "https://github.com/dailymotion/vast-client-js"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/dailymotion/vast-client-js/raw/master/LICENSE"
}
],
"engines": {
"node": ">=0.10.26"
},
"main": "dist/index.js",
"scripts": {
"test": "mocha --compilers coffee:coffee-script/register --reporter spec test/*.coffee",
"bundle": "browserify -s DMVAST -c 'coffee -scb' --extension=.coffee src/index.coffee -o vast-client.js",
"postinstall": "coffee --compile --output dist/ src/"
},
"devDependencies": {
"mocha": "^3.4.2",
"should": "^11.2.1",
"sinon": "^2.3.6"
},
"dependencies": {
"coffee-script": "~1.12.6",
"browserify": "~14.4.0",
"xmldom": "~0.1.27"
}
}