-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.04 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
{
"name": "vmap-client-js",
"author": "Stevennick Ciou <[email protected]>",
"version": "0.0.1",
"description": "Javascript VMAP Client",
"keywords": [
"vmap",
"vast",
"ad",
"advertising",
"iab",
"in-stream",
"video"
],
"repository": {
"type": "git",
"url": "https://github.com/stevennick/vmap-client-js"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/stevennick/vmap-client-js/raw/master/LICENSE"
}
],
"engines": {
"node": "0.12.0"
},
"scripts": {
"test": "mocha --compilers coffee:coffee-script/register --timeout 5000",
"bundle": "browserify -s VMAP -c 'coffee -scb' lib/index.coffee -o vmap-client.js"
},
"devDependencies": {
"chai": "*",
"coffee-script": "*",
"grunt": "^0.4.5",
"grunt-contrib-connect": "^0.10.1",
"grunt-contrib-watch": "^0.6.1",
"load-grunt-tasks": "^3.2.0",
"mocha": "*",
"should": "*",
"time-grunt": "^1.2.1",
"xmldom": "*"
},
"dependencies": {
"coffee-script": "*"
}
}